parent
d741e23dc5
commit
c496321f14
@ -1,6 +1,22 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
UBOOT_PART=/dev/mmcblk0p1
|
||||||
|
|
||||||
DONT_FLASH=1
|
echo "flash-kernel stopped by: /etc/flash-kernel.conf"
|
||||||
exit 0
|
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
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
fi
|
||||||
|
Loading…
Reference in new issue