board: ten64: add a bootmenu entries for NAND-based entries

The recovery-firmware and OpenWrt-NAND do not yet have bootflow
/bootstd entrypoints, so add bootmenu entries to make them
accessible.

Signed-off-by: Mathew McBride <matt@traverse.com.au>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
Mathew McBride 2023-07-21 04:39:22 +00:00 committed by Tom Rini
parent bcedba521b
commit 0a63fb960d

View file

@ -46,6 +46,15 @@
"bootm $load_addr#ten64\0"
#undef CFG_EXTRA_ENV_SETTINGS
#if CONFIG_IS_ENABLED(CMD_BOOTMENU)
#define DEFAULT_MENU_ENTRIES \
"bootmenu_0=Continue standard boot=run bootcmd\0" \
"bootmenu_1=Boot into recovery=run bootcmd_recovery\0" \
"bootmenu_2=Boot OpenWrt from NAND=run bootcmd_openwrt_nand\0"
#else
#define DEFAULT_MENU_ENTRIES ""
#endif /* CONFIG_IS_ENABLED(CMD_BOOTMENU) */
#define CFG_EXTRA_ENV_SETTINGS \
"BOARD=ten64\0" \
"fdt_addr_r=0x90000000\0" \
@ -57,7 +66,8 @@
"openwrt_active_sys=a\0" \
"load_efi_dtb=mtd read devicetree $fdt_addr_r && fdt addr $fdt_addr_r && " \
"fdt resize && fdt boardsetup\0" \
"bootcmd_recovery=mtd read recovery 0xa0000000 && " \
"setenv bootargs \"earlycon root=/dev/ram0 ramdisk_size=0x3000000\" && bootm 0xa0000000#ten64\0"
"bootcmd_recovery=mtd read recovery 0xa0000000; " \
"setenv bootargs \"earlycon root=/dev/ram0 ramdisk_size=0x3000000\" && bootm 0xa0000000#ten64\0" \
DEFAULT_MENU_ENTRIES
#endif /* __TEN64_H */