mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
7f8967c2b8
This option is fact really related to SPL. For U-Boot proper we always use driver model for block devices, so CONFIG_BLK is enabled if block devices are in use. It is only for SPL that we have two cases: - SPL_BLK is enabled, in which case we use driver model and blk-uclass.c - SPL_BLK is not enabled, in which case (if we need block devices) we must use blk_legacy.c Rename the symbol to SPL_LEGACY_BLOCK to make this clear. This is different enough from BLK and SPL_BLK that there should be no confusion. Signed-off-by: Simon Glass <sjg@chromium.org>
41 lines
1 KiB
Text
41 lines
1 KiB
Text
CONFIG_ARC=y
|
|
CONFIG_ISA_ARCV2=y
|
|
CONFIG_TARGET_NSIM=y
|
|
CONFIG_NSIM_BOARD_CPPFLAGS="-mcpu=archs"
|
|
CONFIG_SYS_TEXT_BASE=0x81000000
|
|
CONFIG_SYS_MALLOC_LEN=0x0200000
|
|
CONFIG_SYS_MALLOC_F_LEN=0x400
|
|
CONFIG_DEFAULT_DEVICE_TREE="nsim"
|
|
CONFIG_SYS_PROMPT="nsim# "
|
|
CONFIG_DEBUG_UART_BASE=0xf0000000
|
|
CONFIG_DEBUG_UART_CLOCK=70000000
|
|
CONFIG_SYS_CLK_FREQ=70000000
|
|
CONFIG_SYS_LOAD_ADDR=0x82000000
|
|
CONFIG_DEBUG_UART=y
|
|
CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y
|
|
CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x80000f30
|
|
CONFIG_BOOTDELAY=3
|
|
CONFIG_USE_BOOTARGS=y
|
|
CONFIG_BOOTARGS="console=ttyS0,115200n8"
|
|
CONFIG_BOARD_EARLY_INIT_R=y
|
|
CONFIG_SYS_CBSIZE=256
|
|
CONFIG_SYS_PBSIZE=279
|
|
CONFIG_SYS_BOOTM_LEN=0x2000000
|
|
CONFIG_CMD_DM=y
|
|
# CONFIG_CMD_SETEXPR is not set
|
|
CONFIG_CMD_DHCP=y
|
|
CONFIG_OF_CONTROL=y
|
|
CONFIG_OF_EMBED=y
|
|
CONFIG_SYS_RELOC_GD_ENV_ADDR=y
|
|
CONFIG_USE_BOOTFILE=y
|
|
CONFIG_BOOTFILE="uImage"
|
|
CONFIG_BLK=y
|
|
CONFIG_SPL_LEGACY_BLOCK=y
|
|
CONFIG_DM_ETH=y
|
|
CONFIG_DM_SERIAL=y
|
|
CONFIG_DEBUG_UART_SHIFT=2
|
|
CONFIG_SYS_NS16550=y
|
|
CONFIG_VIRTIO_MMIO=y
|
|
CONFIG_VIRTIO_NET=y
|
|
CONFIG_VIRTIO_BLK=y
|
|
CONFIG_USE_PRIVATE_LIBGCC=y
|