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.
netinstall/scripts/flash-kernel.conf

26 lines
494 B

#!/bin/sh
UBOOT_PART=/dev/mmcblk0p1
echo "flash-kernel stopped by: /etc/flash-kernel.conf"
echo "You are currently running an image built by rcn-ee.net running an rcn-ee"
echo "kernel, to use Ubuntu's Kernel remove the next line"
USE_RCN_EE_KERNEL=1
if [ "$USE_RCN_EE_KERNEL" ] ; then
DIST=$(lsb_release -cs)
case "$DIST" in
lucid)
exit 0
;;
maverick)
FLASH_KERNEL_SKIP=yes
;;
natty)
FLASH_KERNEL_SKIP=yes
;;
esac
fi