forked from artinchip/luban-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
48 lines (37 loc) · 975 Bytes
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
mainmenu "ArtInChip Luban-Lite SDK Configuration"
menu "Project options"
config PRJ_DEFCONFIG_FILENAME
string "Project defconfig file name"
comment "-- Important: If following options have been changed, you need save & rerun menuconfig before changing any other options."
config PRJ_CHIP
string "Chip name"
#option env="PRJ_CHIP"
default "d21x"
config PRJ_BOARD
string "Board name"
#option env="PRJ_BOARD"
default "fpga"
config PRJ_KERNEL
string "Kernel name"
#option env="PRJ_KERNEL"
default "rt-thread"
config PRJ_APP
string "Application name"
#option env="PRJ_APP"
default "helloworld"
endmenu
config PLATFORM_LUBANLITE
bool
default y
config PKGS_DIR
string
option env="PKGS_ROOT"
default "packages"
if ! AIC_BOOTLOADER
source "application/Kconfig"
endif
#source "kernel/$PRJ_KERNEL/Kconfig"
#source "$PKGS_DIR/Kconfig"
source ".Kconfig.prj"
source "packages/Kconfig"
source "bsp/Kconfig"