* u-boot-update-bootmenu can be configured to use different MyDocs, etc and boot paths (useful for non Maemo systems)
ITEM_DEVICE="${EXT_CARD}p1"
How to create bootmenu entry for U-Boot: copy kernel image zImage-my to /opt/boot/ create config file in /etc/bootmenu.d/ with suffix .item Bootmeny entry for other system on SD card: Code: ITEM_NAME="My name" ITEM_KERNEL="uImage" ITEM_INITRD="uInitrd" ITEM_DEVICE="${EXT_CARD}p1" ITEM_FSTYPE="ext4" ITEM_CMDLINE="kernel cmdline" This means that you have SD card with first partition ext4. On that partition is kernel image with name uImage and initrd/initramfs file with name uInitrd (both generated by mkimage, see below
ITEM_NAME="My name" ITEM_KERNEL="uImage" ITEM_INITRD="uInitrd" ITEM_DEVICE="${EXT_CARD}p1" ITEM_FSTYPE="ext4" ITEM_CMDLINE="kernel cmdline"