mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-02 09:46:37 +03:00
The symbol CONFIG_IP_DYN does not exist, but multiple contributors copied an imply statement. Remove the imply IP_DYN statements. Fixes:3fda0262c3("riscv: Add SiFive FU540 board support") Fixes:64413e1b7c("riscv: Add Microchip MPFS Icicle Kit support") Fixes:70415e1e52("board: sifive: add HiFive Unmatched board support") Fixes:6f902b85b6("board: starfive: Add Kconfig for StarFive VisionFive v2 Board") Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Acked-by: Conor Dooley <conor.dooley@microchip.com>
54 lines
909 B
Plaintext
54 lines
909 B
Plaintext
if TARGET_SIFIVE_UNMATCHED
|
|
|
|
config SYS_BOARD
|
|
default "unmatched"
|
|
|
|
config SYS_VENDOR
|
|
default "sifive"
|
|
|
|
config SYS_CPU
|
|
default "fu740"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "sifive-unmatched"
|
|
|
|
config TEXT_BASE
|
|
default 0x80200000 if SPL
|
|
default 0x80000000 if !RISCV_SMODE
|
|
default 0x80200000 if RISCV_SMODE
|
|
|
|
config SPL_TEXT_BASE
|
|
default 0x08000000
|
|
|
|
config SPL_OPENSBI_LOAD_ADDR
|
|
default 0x80000000
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select SIFIVE_FU740
|
|
select ENV_IS_IN_SPI_FLASH
|
|
select SUPPORT_SPL
|
|
select RESET_SIFIVE
|
|
select BINMAN
|
|
imply CMD_DHCP
|
|
imply CMD_EXT2
|
|
imply CMD_EXT4
|
|
imply CMD_FAT
|
|
imply CMD_FS_GENERIC
|
|
imply CMD_GPT
|
|
imply PARTITION_TYPE_GUID
|
|
imply CMD_NET
|
|
imply CMD_PING
|
|
imply CMD_SF
|
|
imply DOS_PARTITION
|
|
imply EFI_PARTITION
|
|
imply ISO_PARTITION
|
|
imply PHY_LIB
|
|
imply PHY_MSCC
|
|
imply SYSRESET
|
|
imply SYSRESET_GPIO
|
|
imply SPL_SYSRESET_GPIO if SPL
|
|
imply CMD_I2C
|
|
|
|
endif
|