Kconfig 533 B

123456789101112131415161718192021222324252627
  1. # SPDX-License-Identifier: GPL-2.0
  2. if ARCH_ZYNQMP_R5
  3. config SYS_BOARD
  4. string "Board name"
  5. default "zynqmp_r5"
  6. config SYS_VENDOR
  7. string "Vendor name"
  8. default "xilinx"
  9. config SYS_SOC
  10. default "zynqmp-r5"
  11. config SYS_CONFIG_NAME
  12. string "Board configuration name"
  13. default "xilinx_zynqmp_r5"
  14. help
  15. This option contains information about board configuration name.
  16. Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
  17. will be used for board configuration.
  18. config SYS_MALLOC_F_LEN
  19. default 0x600
  20. endif