Kconfig 663 B

1234567891011121314151617181920212223242526272829303132333435
  1. if ROCKCHIP_RK3188
  2. config TARGET_ROCK
  3. bool "Radxa Rock"
  4. help
  5. Rock is a RK3188-based development board with 2 USB and 1 otg
  6. ports, HDMI, TV-out, micro-SD card, audio, WiFi and 100MBit
  7. Ethernet, It also includes on-board nand and 1GB of SDRAM.
  8. Expansion connectors provide access to display pins, I2C, SPI,
  9. UART and GPIOs.
  10. config SYS_SOC
  11. default "rockchip"
  12. config SYS_MALLOC_F_LEN
  13. default 0x0800
  14. config SPL_LIBCOMMON_SUPPORT
  15. default y
  16. config SPL_LIBGENERIC_SUPPORT
  17. default y
  18. config SPL_SERIAL_SUPPORT
  19. default y
  20. config TPL_LIBCOMMON_SUPPORT
  21. default y
  22. config TPL_LIBGENERIC_SUPPORT
  23. default y
  24. source "board/radxa/rock/Kconfig"
  25. endif