diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2010-07-31 17:35:27 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2010-08-03 07:49:31 -0400 |
commit | ef61ca88c511154d6bead23c08f9a021cfdfeb01 (patch) | |
tree | 3fc66cf250df8eef33f015b040dc0f4d04844763 /scripts | |
parent | 4062f1a4c030157216dc8932e27131975cf7253c (diff) |
kconfig: rename loose_nonint_oldconfig => oldnoconfig
Rename target to something that fall more in line
with the other kconfig targets.
oldnoconfig shall read as:
- read the old configuration and set all new options to no
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Aristeu Rozanski <aris@redhat.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/Makefile | 7 | ||||
-rw-r--r-- | scripts/kconfig/conf.c | 14 |
2 files changed, 10 insertions, 11 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 549e50e49cbf..2142afb0a13b 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
@@ -90,9 +90,9 @@ PHONY += allnoconfig allyesconfig allmodconfig randconfig | |||
90 | allnoconfig allyesconfig allmodconfig randconfig: $(obj)/conf | 90 | allnoconfig allyesconfig allmodconfig randconfig: $(obj)/conf |
91 | $< --$@ $(Kconfig) | 91 | $< --$@ $(Kconfig) |
92 | 92 | ||
93 | PHONY += nonint_oldconfig loose_nonint_oldconfig defconfig | 93 | PHONY += nonint_oldconfig oldnoconfig defconfig |
94 | 94 | ||
95 | nonint_oldconfig loose_nonint_oldconfig: $(obj)/conf | 95 | nonint_oldconfig oldnoconfig: $(obj)/conf |
96 | $< --$@ $(Kconfig) | 96 | $< --$@ $(Kconfig) |
97 | 97 | ||
98 | defconfig: $(obj)/conf | 98 | defconfig: $(obj)/conf |
@@ -124,8 +124,7 @@ help: | |||
124 | @echo ' allnoconfig - New config where all options are answered with no' | 124 | @echo ' allnoconfig - New config where all options are answered with no' |
125 | @echo ' nonint_oldconfig - Checks the current configuration and fails if an option is ' | 125 | @echo ' nonint_oldconfig - Checks the current configuration and fails if an option is ' |
126 | @echo ' not set' | 126 | @echo ' not set' |
127 | @echo ' loose_nonint_oldconfig - Same as nonint_oldconfig, but updates the config file with ' | 127 | @echo ' oldnoconfig - Same as silentoldconfig but set new symbols to n (unset)' |
128 | @echo ' missing config options as unset' | ||
129 | 128 | ||
130 | # lxdialog stuff | 129 | # lxdialog stuff |
131 | check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh | 130 | check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh |
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index 2dec584f1268..1f86fca6b07f 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c | |||
@@ -34,7 +34,7 @@ enum input_mode { | |||
34 | randconfig, | 34 | randconfig, |
35 | defconfig, | 35 | defconfig, |
36 | nonint_oldconfig, | 36 | nonint_oldconfig, |
37 | loose_nonint_oldconfig, | 37 | oldnoconfig, |
38 | } input_mode = oldaskconfig; | 38 | } input_mode = oldaskconfig; |
39 | 39 | ||
40 | char *defconfig_file; | 40 | char *defconfig_file; |
@@ -367,7 +367,7 @@ static void conf(struct menu *menu) | |||
367 | case P_MENU: | 367 | case P_MENU: |
368 | if ((input_mode == silentoldconfig || | 368 | if ((input_mode == silentoldconfig || |
369 | input_mode == nonint_oldconfig || | 369 | input_mode == nonint_oldconfig || |
370 | input_mode == loose_nonint_oldconfig) && | 370 | input_mode == oldnoconfig) && |
371 | rootEntry != menu) { | 371 | rootEntry != menu) { |
372 | check_conf(menu); | 372 | check_conf(menu); |
373 | return; | 373 | return; |
@@ -427,7 +427,7 @@ static void check_conf(struct menu *menu) | |||
427 | if (sym_is_changable(sym) || | 427 | if (sym_is_changable(sym) || |
428 | (sym_is_choice(sym) && sym_get_tristate_value(sym) == yes)) { | 428 | (sym_is_choice(sym) && sym_get_tristate_value(sym) == yes)) { |
429 | if (input_mode == nonint_oldconfig || | 429 | if (input_mode == nonint_oldconfig || |
430 | input_mode == loose_nonint_oldconfig) { | 430 | input_mode == oldnoconfig) { |
431 | if (input_mode == nonint_oldconfig && | 431 | if (input_mode == nonint_oldconfig && |
432 | sym->name && !sym_is_choice_value(sym)) { | 432 | sym->name && !sym_is_choice_value(sym)) { |
433 | if (!unset_variables) | 433 | if (!unset_variables) |
@@ -460,7 +460,7 @@ static struct option long_opts[] = { | |||
460 | {"allmodconfig", no_argument, NULL, allmodconfig}, | 460 | {"allmodconfig", no_argument, NULL, allmodconfig}, |
461 | {"randconfig", no_argument, NULL, randconfig}, | 461 | {"randconfig", no_argument, NULL, randconfig}, |
462 | {"nonint_oldconfig", no_argument, NULL, nonint_oldconfig}, | 462 | {"nonint_oldconfig", no_argument, NULL, nonint_oldconfig}, |
463 | {"loose_nonint_oldconfig", no_argument, NULL, loose_nonint_oldconfig}, | 463 | {"oldnoconfig", no_argument, NULL, oldnoconfig}, |
464 | {NULL, 0, NULL, 0} | 464 | {NULL, 0, NULL, 0} |
465 | }; | 465 | }; |
466 | 466 | ||
@@ -540,7 +540,7 @@ int main(int ac, char **av) | |||
540 | case oldaskconfig: | 540 | case oldaskconfig: |
541 | case oldconfig: | 541 | case oldconfig: |
542 | case nonint_oldconfig: | 542 | case nonint_oldconfig: |
543 | case loose_nonint_oldconfig: | 543 | case oldnoconfig: |
544 | conf_read(NULL); | 544 | conf_read(NULL); |
545 | break; | 545 | break; |
546 | case allnoconfig: | 546 | case allnoconfig: |
@@ -603,7 +603,7 @@ int main(int ac, char **av) | |||
603 | input_mode = silentoldconfig; | 603 | input_mode = silentoldconfig; |
604 | /* fall through */ | 604 | /* fall through */ |
605 | case nonint_oldconfig: | 605 | case nonint_oldconfig: |
606 | case loose_nonint_oldconfig: | 606 | case oldnoconfig: |
607 | case silentoldconfig: | 607 | case silentoldconfig: |
608 | /* Update until a loop caused no more changes */ | 608 | /* Update until a loop caused no more changes */ |
609 | do { | 609 | do { |
@@ -611,7 +611,7 @@ int main(int ac, char **av) | |||
611 | check_conf(&rootmenu); | 611 | check_conf(&rootmenu); |
612 | } while (conf_cnt && | 612 | } while (conf_cnt && |
613 | (input_mode != nonint_oldconfig && | 613 | (input_mode != nonint_oldconfig && |
614 | input_mode != loose_nonint_oldconfig)); | 614 | input_mode != oldnoconfig)); |
615 | break; | 615 | break; |
616 | } | 616 | } |
617 | 617 | ||