2016-01-25 07:16:07 +00:00
|
|
|
CONFIG_ARM=y
|
|
|
|
CONFIG_TARGET_LS1043AQDS=y
|
|
|
|
CONFIG_DEFAULT_DEVICE_TREE="fsl-ls1043a-qds-duart"
|
2016-02-23 05:55:43 +00:00
|
|
|
CONFIG_FIT=y
|
|
|
|
CONFIG_FIT_VERBOSE=y
|
|
|
|
CONFIG_OF_BOARD_SETUP=y
|
2016-10-05 01:03:08 +00:00
|
|
|
CONFIG_SYS_EXTRA_OPTIONS="QSPI_BOOT"
|
2016-06-28 02:40:17 +00:00
|
|
|
CONFIG_QSPI_BOOT=y
|
2016-06-07 06:31:14 +00:00
|
|
|
CONFIG_BOOTDELAY=10
|
2016-04-22 01:37:19 +00:00
|
|
|
CONFIG_HUSH_PARSER=y
|
2016-04-24 21:29:26 +00:00
|
|
|
CONFIG_CMD_BOOTZ=y
|
2016-04-22 20:41:25 +00:00
|
|
|
# CONFIG_CMD_IMLS is not set
|
2016-04-24 21:29:26 +00:00
|
|
|
CONFIG_CMD_GREPENV=y
|
2016-04-22 20:41:25 +00:00
|
|
|
CONFIG_CMD_MEMTEST=y
|
|
|
|
CONFIG_CMD_MEMINFO=y
|
2016-04-24 21:29:26 +00:00
|
|
|
CONFIG_CMD_MMC=y
|
2016-04-22 20:41:25 +00:00
|
|
|
CONFIG_CMD_SF=y
|
|
|
|
CONFIG_CMD_I2C=y
|
|
|
|
CONFIG_CMD_USB=y
|
|
|
|
CONFIG_CMD_DHCP=y
|
cmd: move CMD_PXE to Kconfig
Currently, CMD_PXE is forcibly enabled in config_distro_defaults.h, so
that general purpose distributions can rely on it being defined. This
header is included, under conditions or not, by various archs or
famillies of archs / SoCs.
However, it is very possible that boards based on those SoCs will not
have a physical ethernet connector at all, even if the have a MAC; for
example, the Nanopi Neo AIR (sunxi H3) does not. It is also possible
that network booting is absolutely not necessary for a device.
However, it is not possible to disable the PXE command, as it is
forcibly enabled and is non-configurable.
But it turns out we already have a config option to build a distro-ready
image, in the name of DISTRO_DEFAULTS.
Move CMD_PXE out of the hard-coded config_distro_defaults.h into a
Kconfig option, that gets selected by DISTRO_DEFAULTS when it is set.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Joe Hershberger <joe.hershberger@ni.com>
[trini: Make it select MENU, run moveconfig.py]
Signed-off-by: Tom Rini <trini@konsulko.com>
2016-11-13 20:59:52 +00:00
|
|
|
CONFIG_CMD_PXE=y
|
2016-04-24 21:29:26 +00:00
|
|
|
CONFIG_CMD_MII=y
|
2016-04-22 20:41:25 +00:00
|
|
|
CONFIG_CMD_PING=y
|
2016-04-24 21:29:26 +00:00
|
|
|
CONFIG_CMD_CACHE=y
|
|
|
|
CONFIG_CMD_EXT2=y
|
|
|
|
CONFIG_CMD_FAT=y
|
2016-01-25 07:16:07 +00:00
|
|
|
CONFIG_OF_CONTROL=y
|
|
|
|
CONFIG_DM=y
|
|
|
|
CONFIG_SPI_FLASH=y
|
2016-10-26 21:15:37 +00:00
|
|
|
CONFIG_PCI=y
|
2016-03-21 13:47:40 +00:00
|
|
|
CONFIG_SYS_NS16550=y
|
2016-09-08 20:11:59 +00:00
|
|
|
CONFIG_DM_SPI=y
|
2016-06-03 22:35:03 +00:00
|
|
|
CONFIG_USB=y
|
2016-10-18 02:12:37 +00:00
|
|
|
CONFIG_DM_USB=y
|
2016-06-03 22:35:03 +00:00
|
|
|
CONFIG_USB_XHCI_HCD=y
|
2016-06-03 22:35:04 +00:00
|
|
|
CONFIG_USB_XHCI_DWC3=y
|
2016-09-08 20:31:26 +00:00
|
|
|
CONFIG_USB_STORAGE=y
|