-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
51 lines (43 loc) · 1.17 KB
/
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
49
50
#
# Copyright 2014, NICTA
#
# This software may be distributed and modified according to the terms of
# the BSD 2-Clause license. Note that NO WARRANTY is provided.
# See "LICENSE_BSD2.txt" for details.
#
# @TAG(NICTA_BSD)
#
mainmenu "Project Configuration"
config COMMON_PATH
string
option env="COMMON_PATH"
menu "seL4 Kernel"
source "kernel/Kconfig"
endmenu
menu "seL4 Libraries"
source "libs/libmuslc/Kconfig"
source "libs/libsel4/Kconfig"
source "libs/libsel4cspace/Kconfig"
source "libs/liblwip/Kconfig"
source "libs/libserial/Kconfig"
source "libs/libnfs/Kconfig"
source "libs/libclock/Kconfig"
source "libs/libelf/Kconfig"
source "libs/libcpio/Kconfig"
source "libs/libethdrivers/Kconfig"
source "libs/libutils/Kconfig"
source "libs/libplatsupport/Kconfig"
source "libs/libsos/Kconfig"
source "libs/libsel4sync/Kconfig"
endmenu
menu "seL4 Applications"
source "apps/sos/Kconfig"
source "apps/sosh/Kconfig"
source "apps/tty_test/Kconfig"
source "apps/my_app/Kconfig"
source "apps/time_driver/Kconfig"
endmenu
menu "Tools"
source "tools/elfloader/Kconfig"
endmenu
source "$COMMON_PATH/Kconfig"