Kconfig 468 B

123456789101112131415161718192021222324
  1. if ROCKCHIP_RK3128
  2. choice
  3. prompt "RK3128 board select"
  4. config TARGET_EVB_RK3128
  5. bool "RK3128 evaluation board"
  6. select BOARD_LATE_INIT
  7. help
  8. RK3128evb is a evaluation board for Rockchip rk3128,
  9. with full function and phisical connectors support like
  10. usb2.0 host ports, LVDS, JTAG, MAC, SDcard, HDMI, USB-2-serial...
  11. endchoice
  12. config SYS_SOC
  13. default "rockchip"
  14. config SYS_MALLOC_F_LEN
  15. default 0x0800
  16. source "board/rockchip/evb_rk3128/Kconfig"
  17. endif