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.
|
#!/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
|
|
FLASH_KERNEL_SKIP=yes
|
|
fi
|