mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 07:04:28 +00:00
a4fa811463
cmd/Makefile has: ifdef CONFIG_FPGA obj-$(CONFIG_CMD_FPGA) += fpga.o endif which means that if CONFIG_FPGA is not set, CONFIG_CMD_FPGA silently does nothing. Let's remove that Makefile conditional and instead express this equivalent dependency in Kconfig, so a lot of redundant # CONFIG_CMD_FPGA is not set can be removed from board defconfigs that don't actually have an FPGA. Signed-off-by: Tuomas Tynkkynen <tuomas@tuxera.com>
25 lines
594 B
Text
25 lines
594 B
Text
CONFIG_MIPS=y
|
|
CONFIG_TARGET_MALTA=y
|
|
CONFIG_SYS_LITTLE_ENDIAN=y
|
|
CONFIG_CPU_MIPS64_R2=y
|
|
CONFIG_DEFAULT_DEVICE_TREE="mti,malta"
|
|
CONFIG_BOARD_EARLY_INIT_F=y
|
|
CONFIG_HUSH_PARSER=y
|
|
CONFIG_SYS_PROMPT="maltael # "
|
|
# CONFIG_AUTOBOOT is not set
|
|
CONFIG_CMD_IMLS=y
|
|
CONFIG_CMD_IDE=y
|
|
# CONFIG_CMD_LOADB is not set
|
|
# CONFIG_CMD_LOADS is not set
|
|
CONFIG_CMD_PCI=y
|
|
# CONFIG_CMD_SETEXPR is not set
|
|
CONFIG_CMD_DHCP=y
|
|
# CONFIG_CMD_NFS is not set
|
|
CONFIG_CMD_PING=y
|
|
CONFIG_CMD_DATE=y
|
|
# CONFIG_ISO_PARTITION is not set
|
|
CONFIG_OF_EMBED=y
|
|
CONFIG_ENV_IS_IN_FLASH=y
|
|
CONFIG_MTD_NOR_FLASH=y
|
|
CONFIG_PCI=y
|
|
CONFIG_SYS_NS16550=y
|