diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2008-12-02 15:12:15 +0200 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2008-12-02 15:12:15 +0200 |
commit | 08ade1ed2eb1f94d58a7952a67685dcbc62a2b86 (patch) | |
tree | 5b6e551bb0e6e2667fd725c61ebb42e3ce48ff80 /packages/linux/linux-handhelds-2.6.inc | |
parent | 479aacd6ae1c97974360de4619223e82b8e4cb5c (diff) |
linux-handhelds-2.6: Add more verbose message about KERNEL_INITRAMFS_PATH.
* Also, fix zImage file name in generated HaRET's startup.txt.
Diffstat (limited to 'packages/linux/linux-handhelds-2.6.inc')
-rw-r--r-- | packages/linux/linux-handhelds-2.6.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/linux/linux-handhelds-2.6.inc b/packages/linux/linux-handhelds-2.6.inc index 2785fb8ea3..9785d84491 100644 --- a/packages/linux/linux-handhelds-2.6.inc +++ b/packages/linux/linux-handhelds-2.6.inc @@ -37,7 +37,11 @@ do_configure() { if [ -n "${KERNEL_INITRAMFS_PATH}" -a "${ANGSTROM_MODE}" = "glibc" ]; then if [ ! -f ${KERNEL_INITRAMFS_PATH} ]; then - echo "${KERNEL_INITRAMFS_PATH} does not exist, you may need to bitbake it separately" + echo "Kernel is requested to be built with internal initramfs." + echo "The initramfs image must exist prior to building the kernel, but it does not + echo "exist at the specified path ${KERNEL_INITRAMFS_PATH}. You may need to bitbake" + echo "it separately, possibly, with a different set of bitbake options. Please" + echo "consult documentation for your distro." exit 1 fi @@ -81,7 +85,7 @@ gen_haret_startup() { # This is startup file for HaRET, Linux bootloader for WinCE # http://handhelds.org/wiki/HaRET -set kernel "${KERNEL_IMAGE_BASE_NAME}" +set kernel "${KERNEL_IMAGE_BASE_NAME}.bin" # Boot choices. Uncomment 'set' statements in exactly one section |