-
Notifications
You must be signed in to change notification settings - Fork 4
/
Config.in
90 lines (73 loc) · 1.78 KB
/
Config.in
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#
# This file is distributed as part of Xilinx ARM SDK
#
# Copyright (c) 2020 - 2021, Xilinx, Inc.
# All rights reserved.
#
#mainmenu "ABuilder Configuration"
config SNIC_HAVE_DOT_CONFIG
bool
default y
config SNIC_VERSION
string
default "2010.05"
choice
prompt "Operating Mode"
default SNIC_CUSTOMER
help
Select development options.
config SNIC_CUSTOMER
bool "Customer Suggested Options"
help
Only supported features will be available.
config SNIC_DEVELOPER
bool "Developer"
help
Used by developers - no support available
endchoice
config SNIC_EXPERIMENTAL
bool "Include experimental options"
depends on SNIC_DEVELOPER
help
Experimental features - no support available
config SNIC_USE_SUBVARIANT
depends on SNIC_DEVELOPER
bool "Specify a named subvariant"
default n
config SNIC_SUBVARIANT
depends on SNIC_USE_SUBVARIANT
string "Subvariant name"
default ""
config SNIC_MAKE_JOBS
int "Number of simultaneous jobs a 'make' can launch (max 8)"
default 4
range 1 8
help
Number of jobs allows to run parallel builds.
config SNIC_BUILD_INTREE
bool "Build/Distro directories in current tree"
default "y"
help
Build and distro directories are created in tree. If 'no' is selected,
then build and distro directories shall be generated in the directory
above. This option is available for compatibility with previous release.
config SNIC_BUILD_PRESEED
bool "Use Preseed Download directories"
default "y"
help
Preseed download directories from preseed tgz files
if available
config SNIC_RELEASE_VER
string
default "0.1"
help
Release version
#config SNIC_DEBIAN_PACKAGES
# bool "Build Debian packages"
# default "n"
# help
# Allow Debian packages to be created using a stamp name,
# if defined.
source target/Config.in
source package/Config.in
#endmenu