Kconfig 444 B

1234567891011121314151617181920212223
  1. if ROCKCHIP_RK3328
  2. choice
  3. prompt "RK3328 board select"
  4. config TARGET_EVB_RK3328
  5. bool "RK3328 evaluation board"
  6. help
  7. RK3328evb is a evaluation board for Rockchip rk3328,
  8. with full function and phisical connectors support like
  9. usb2.0 host ports, LVDS, JTAG, MAC, SDcard, HDMI, USB-2-serial...
  10. endchoice
  11. config SYS_SOC
  12. default "rockchip"
  13. config SYS_MALLOC_F_LEN
  14. default 0x0800
  15. source "board/rockchip/evb_rk3328/Kconfig"
  16. endif