summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-10-31 00:52:05 +0100
committerRichard Braun <rbraun@sceen.net>2017-10-31 00:52:05 +0100
commitb5c668a0b8fdc6e9c3b60765b1a7f321916b49c8 (patch)
tree3248e259f46022689b4eef05559528f8488f1833 /tools
parent42a3454c9dd9622c21bf7748f4d6edc1d7f6f8c6 (diff)
Rename CONFIG_MULTIPROCESSOR to CONFIG_SMP
Machine-independent code assumes SMP, and the name is shorter.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/build_configs.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/build_configs.py b/tools/build_configs.py
index 96d1fbb..00d0592 100755
--- a/tools/build_configs.py
+++ b/tools/build_configs.py
@@ -78,7 +78,7 @@ all_cc_options_dict = {
small_options_dict = {
'CONFIG_CC_OPTIONS' : gen_cc_options_list(all_cc_options_dict),
- 'CONFIG_MULTIPROCESSOR' : ['y', 'n'],
+ 'CONFIG_SMP' : ['y', 'n'],
'CONFIG_MAX_CPUS' : ['1', '128'],
'CONFIG_ASSERT' : ['y', 'n'],
}
@@ -113,11 +113,11 @@ all_filters_list = [
'CONFIG_CC_OPTIONS' : [True, re.compile('-flto')],
},
{
- 'CONFIG_MULTIPROCESSOR' : [True, 'y'],
+ 'CONFIG_SMP' : [True, 'y'],
'CONFIG_MAX_CPUS' : [True, '1'],
},
{
- 'CONFIG_MULTIPROCESSOR' : [True, 'n'],
+ 'CONFIG_SMP' : [True, 'n'],
'CONFIG_MAX_CPUS' : [False, '1'],
},
{