Kconfig 628 字节
Newer Older
还_没_想_好's avatar
还_没_想_好 已提交
1 2
mainmenu "RT-Thread Configuration"

misonyo's avatar
misonyo 已提交
3
config BSP_DIR
还_没_想_好's avatar
还_没_想_好 已提交
4 5 6 7
    string
    option env="BSP_ROOT"
    default "."

misonyo's avatar
misonyo 已提交
8
config RTT_DIR
还_没_想_好's avatar
还_没_想_好 已提交
9 10
    string
    option env="RTT_ROOT"
B
bernard 已提交
11 12
    default "../.."

还_没_想_好's avatar
还_没_想_好 已提交
13 14 15
# you can change the RTT_ROOT default "../.." to your rtthread_root,
# example : default "F:/git_repositories/rt-thread"

misonyo's avatar
misonyo 已提交
16
config PKGS_DIR
还_没_想_好's avatar
还_没_想_好 已提交
17 18 19 20
    string
    option env="PKGS_ROOT"
    default "packages"

21 22
source "$RTT_DIR/Kconfig"
source "$PKGS_DIR/Kconfig"
23 24 25 26 27 28 29 30 31 32

config BOARD_X1000_REALBOARD
    bool 
    select ARCH_MIPS_XBURST
    default y

config RT_USING_HARD_FLOAT
    bool "Enable Hardware Float Unit"
    default y

还_没_想_好's avatar
还_没_想_好 已提交
33
source "$BSP_DIR/drivers/Kconfig"