Kconfig 852 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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_CACHE
  18. select RT_USING_COMPONENTS_INIT
  19. select RT_USING_USER_MAIN
  20. default y
  21. choice
  22. prompt "Lcd for mini2440"
  23. default RT_MINI2440_LCD_T35
  24. depends on PKG_USING_GUIENGINE
  25. config RT_MINI2440_LCD_A70
  26. bool "A70"
  27. config RT_MINI2440_LCD_T43
  28. bool "T43"
  29. config RT_MINI2440_LCD_N35
  30. bool "N35"
  31. config RT_MINI2440_LCD_T35
  32. bool "T35"
  33. config RT_MINI2440_LCD_X35
  34. bool "X35"
  35. endchoice
  36. source "$RTT_DIR/Kconfig"
  37. source "$PKGS_DIR/Kconfig"