mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 08:27:23 +00:00
3a649407a4
Today, we have cases where we wish to build all of U-Boot in Thumb2 mode for various reasons. We also have cases where we only build SPL in Thumb2 mode due to size constraints and wish to build the rest of the system in ARM mode. So in this migration we introduce a new symbol as well, SPL_SYS_THUMB_BUILD to control if we build everything or just SPL (or in theory, just U-Boot) in Thumb2 mode. Signed-off-by: Tom Rini <trini@konsulko.com> Acked-by: Siarhei Siamashka <siarhei.siamashka@gmail.com>
30 lines
744 B
Text
30 lines
744 B
Text
CONFIG_ARM=y
|
|
# CONFIG_SYS_THUMB_BUILD is not set
|
|
CONFIG_OMAP34XX=y
|
|
CONFIG_TARGET_NOKIA_RX51=y
|
|
CONFIG_VIDEO=y
|
|
CONFIG_BOOTDELAY=30
|
|
# CONFIG_CONSOLE_MUX is not set
|
|
CONFIG_SYS_CONSOLE_IS_IN_ENV=y
|
|
CONFIG_HUSH_PARSER=y
|
|
CONFIG_SYS_PROMPT="Nokia RX-51 # "
|
|
CONFIG_AUTOBOOT_KEYED=y
|
|
CONFIG_CMD_BOOTMENU=y
|
|
# CONFIG_CMD_IMI is not set
|
|
# CONFIG_CMD_IMLS is not set
|
|
# CONFIG_CMD_SAVEENV is not set
|
|
# CONFIG_CMD_FLASH is not set
|
|
CONFIG_CMD_MMC=y
|
|
CONFIG_CMD_I2C=y
|
|
# CONFIG_CMD_FPGA is not set
|
|
CONFIG_CMD_GPIO=y
|
|
# CONFIG_CMD_SETEXPR is not set
|
|
# CONFIG_CMD_NET is not set
|
|
# CONFIG_CMD_NFS is not set
|
|
CONFIG_CMD_EXT2=y
|
|
CONFIG_CMD_EXT4=y
|
|
CONFIG_CMD_FAT=y
|
|
CONFIG_MMC_OMAP_HS=y
|
|
CONFIG_SYS_NS16550=y
|
|
CONFIG_CFB_CONSOLE_ANSI=y
|
|
# CONFIG_VGA_AS_SINGLE_DEVICE is not set
|