Kconfig 689 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. mainmenu "RT-Thread Project Configuration"
  2. BSP_DIR := .
  3. RTT_DIR := ../..
  4. PKGS_DIR := packages
  5. config BOARD_MINI2440
  6. bool
  7. select ARCH_ARM_ARM9
  8. select RT_USING_CACHE
  9. select RT_USING_COMPONENTS_INIT
  10. select RT_USING_USER_MAIN
  11. default y
  12. choice
  13. prompt "Lcd for mini2440"
  14. default RT_MINI2440_LCD_T35
  15. depends on PKG_USING_GUIENGINE
  16. config RT_MINI2440_LCD_A70
  17. bool "A70"
  18. config RT_MINI2440_LCD_T43
  19. bool "T43"
  20. config RT_MINI2440_LCD_N35
  21. bool "N35"
  22. config RT_MINI2440_LCD_T35
  23. bool "T35"
  24. config RT_MINI2440_LCD_X35
  25. bool "X35"
  26. endchoice
  27. source "$(RTT_DIR)/Kconfig"
  28. osource "$PKGS_DIR/Kconfig"