Kconfig 490 B

1234567891011121314151617181920212223242526
  1. mainmenu "RT-Thread Configuration"
  2. BSP_DIR := .
  3. RTT_DIR := ../../..
  4. # you can change the RTT_ROOT default "../../.." to your rtthread_root,
  5. # example : default "F:/git_repositories/rt-thread"
  6. PKGS_DIR := packages
  7. ENV_DIR := /
  8. source "$(RTT_DIR)/Kconfig"
  9. osource "$PKGS_DIR/Kconfig"
  10. config SOC_AT91SAM9G45
  11. bool
  12. select ARCH_ARM_ARM9
  13. select RT_USING_CACHE
  14. select RT_USING_COMPONENTS_INIT
  15. select RT_USING_USER_MAIN
  16. default y
  17. source "$(BSP_DIR)/drivers/Kconfig"