mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
4f67b93fb7
We enabled CONFIG_ISO_PARTITION by default for distro boot, so that U-Boot could load distro images that usually get shipped as iso images. These images usually come with a board agnostic boot environment. However, there is very little point in having ISO support enabled (for anyone really) in SPL, as the whole idea of SPL is to load U-Boot proper which again is board specific. So the fact that we enable ISO support in U-Boot proper does not mean at all that we want ISO support in U-Boot SPL. Hence, let's remove the Kconfig dependency. Along the way, let's also clean up all those default configs that disabled SPL ISO support. Signed-off-by: Alexander Graf <agraf@suse.de>
43 lines
1.1 KiB
Text
43 lines
1.1 KiB
Text
CONFIG_ARM=y
|
|
CONFIG_ARCH_ZYNQ=y
|
|
CONFIG_SYS_TEXT_BASE=0x4000000
|
|
CONFIG_SPL=y
|
|
CONFIG_IDENT_STRING=" Xilinx Zynq ZC770 XM011"
|
|
CONFIG_SPL_STACK_R_ADDR=0x200000
|
|
# CONFIG_SPL_FAT_SUPPORT is not set
|
|
CONFIG_DEFAULT_DEVICE_TREE="zynq-zc770-xm011"
|
|
CONFIG_DEBUG_UART=y
|
|
CONFIG_DISTRO_DEFAULTS=y
|
|
CONFIG_FIT=y
|
|
CONFIG_FIT_SIGNATURE=y
|
|
CONFIG_FIT_VERBOSE=y
|
|
CONFIG_BOOTCOMMAND="run $modeboot || run distro_bootcmd"
|
|
# CONFIG_DISPLAY_CPUINFO is not set
|
|
CONFIG_SPL_STACK_R=y
|
|
CONFIG_SPL_OS_BOOT=y
|
|
CONFIG_SYS_PROMPT="Zynq> "
|
|
# CONFIG_CMD_FLASH is not set
|
|
CONFIG_CMD_FPGA_LOADBP=y
|
|
CONFIG_CMD_FPGA_LOADFS=y
|
|
CONFIG_CMD_FPGA_LOADMK=y
|
|
CONFIG_CMD_FPGA_LOADP=y
|
|
CONFIG_CMD_GPIO=y
|
|
CONFIG_CMD_NAND_LOCK_UNLOCK=y
|
|
# CONFIG_CMD_SETEXPR is not set
|
|
# CONFIG_CMD_NET is not set
|
|
CONFIG_CMD_CACHE=y
|
|
# CONFIG_SPL_DOS_PARTITION is not set
|
|
# CONFIG_SPL_EFI_PARTITION is not set
|
|
CONFIG_SPL_DM_SEQ_ALIAS=y
|
|
CONFIG_BLK=y
|
|
CONFIG_FPGA_XILINX=y
|
|
CONFIG_FPGA_ZYNQPL=y
|
|
CONFIG_DM_GPIO=y
|
|
# CONFIG_MMC is not set
|
|
CONFIG_NAND=y
|
|
CONFIG_NAND_ZYNQ=y
|
|
CONFIG_DEBUG_UART_ZYNQ=y
|
|
CONFIG_DEBUG_UART_BASE=0xe0001000
|
|
CONFIG_DEBUG_UART_CLOCK=50000000
|
|
CONFIG_DEBUG_UART_ANNOUNCE=y
|
|
CONFIG_ZYNQ_SERIAL=y
|