Kconfig 834 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. mainmenu "RT-Thread Project Configuration"
  2. config BSP_DIR
  3. string
  4. option env="BSP_ROOT"
  5. default "."
  6. config RTT_DIR
  7. string
  8. option env="RTT_ROOT"
  9. default "../.."
  10. config PKGS_DIR
  11. string
  12. option env="PKGS_ROOT"
  13. default "packages"
  14. config BOARD_MINI2440
  15. bool
  16. select ARCH_ARM_ARM9
  17. select RT_USING_COMPONENTS_INIT
  18. select RT_USING_USER_MAIN
  19. default y
  20. choice
  21. prompt "Lcd for mini2440"
  22. default RT_MINI2440_LCD_T35
  23. depends on PKG_USING_GUIENGINE
  24. config RT_MINI2440_LCD_A70
  25. bool "A70"
  26. config RT_MINI2440_LCD_T43
  27. bool "T43"
  28. config RT_MINI2440_LCD_N35
  29. bool "N35"
  30. config RT_MINI2440_LCD_T35
  31. bool "T35"
  32. config RT_MINI2440_LCD_X35
  33. bool "X35"
  34. endchoice
  35. source "$RTT_DIR/Kconfig"
  36. source "$PKGS_DIR/Kconfig"