You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
273 B
16 lines
273 B
12 years ago
|
#!/bin/sh -e
|
||
|
UBOOT_PART=/dev/mmcblk0p1
|
||
|
|
||
|
echo "flash-kernel stopped by: /etc/flash-kernel.conf"
|
||
|
USE_CUSTOM_KERNEL=1
|
||
|
|
||
|
if [ "${USE_CUSTOM_KERNEL}" ] ; then
|
||
|
distro=$(lsb_release -cs)
|
||
|
|
||
|
case "${distro}" in
|
||
|
oneiric|precise|quantal|raring)
|
||
|
FLASH_KERNEL_SKIP=yes
|
||
|
;;
|
||
|
esac
|
||
|
fi
|