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