summaryrefslogtreecommitdiff
path: root/config/global.in
blob: a19667b7307317ea7c7fad227cd2887f91e0a079 (plain)
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
# Overall toolchain configuration: paths, jobs, etc...

config VERSION
    string
    option env="CT_VERSION"

# Config version checking framework. If CONFIG_VERSION is unset in the current .config
# or defconfig, it is loaded as 0 (possibly triggering a user prompt during 'ct-ng oldconfig').
# If the value of CONFIG_VERSION is older than CONFIG_VERSION_CURRENT, we'll advice the user
# to run the configuration through an upgrade. If it is newer, we'll error out - I have no
# crystal orb to perform the downgrade.

# Hack to make kconfig save/load the value for CONFIG_VERSION. Set to empty value (for
# normal operations like 'ct-ng menuconfig'); 'load' for creating a configuration from a (potentially)
# old file, i.e. 'ct-ng <sample>' or 'ct-ng oldconfig'; 'save' for saving the current configuration,
# i.e. 'ct-ng saveconfig' or 'ct-ng savedefconfig'.
config VCHECK
    string
    option env="CT_VCHECK"

config CONFIG_VERSION_CURRENT
    string
    default -1 if VCHECK = "save"
    default 1

config CONFIG_VERSION
    string
    prompt "** make it changeable **" if VCHECK = "load" || VCHECK = "save"
    default 0 if VCHECK = "load" || VCHECK = "save"
    default CONFIG_VERSION_CURRENT

if VCHECK = "warning"
comment "*************************************************************************"
comment "Loaded configuration was generated by a previous version of crosstool-NG."
comment "Saving it will mark the configuration as up-to-date without verifying it."
comment "It is recommended to run \"ct-ng upgradeconfig\" before making any         "
comment "changes to the configuration.                                            "
comment "*************************************************************************"
endif

# Allow unconditional usage of tristates
config MODULES
    def_bool y
    option modules

menu "Paths and misc options"

source "config/global/ct-behave.in"
source "config/global/paths.in"
source "config/global/download.in"
source "config/global/extract.in"
source "config/global/build-behave.in"
source "config/global/logging.in"

endmenu