mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +00:00
a1108da731
This option enable adding new platform suport just by adding defconfig and DTS file which will target generic configuration for SoC. Make no sense to extend Kconfig just create a pointer between DTS and configuration file. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
23 lines
450 B
Text
23 lines
450 B
Text
if ARCH_ZYNQMP
|
|
|
|
config SYS_BOARD
|
|
default "zynqmp"
|
|
|
|
config SYS_VENDOR
|
|
default "xilinx"
|
|
|
|
config SYS_SOC
|
|
default "zynqmp"
|
|
|
|
config SYS_CONFIG_NAME
|
|
string "Board configuration name"
|
|
default "xilinx_zynqmp"
|
|
help
|
|
This option contains information about board configuration name.
|
|
Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
|
|
will be used for board configuration.
|
|
|
|
config ZYNQMP_USB
|
|
bool "Configure ZynqMP USB"
|
|
|
|
endif
|