kconfig: remove oldnoconfig target
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Mon, 29 Oct 2018 15:41:27 +0000 (00:41 +0900)
committerChristian Lamparter <chunkeey@gmail.com>
Sun, 10 Feb 2019 21:30:04 +0000 (22:30 +0100)
As commit 312ee68752fa ("kconfig: announce removal of oldnoconfig if
used") announced, it is time for the removal.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
config/conf.c

index c19af7d7d99d7bc8b3ebf717dd5a13ac8f66a9f8..bd0421791dc811ce6e9097042559f0300275bb8e 100644 (file)
@@ -31,7 +31,6 @@ enum input_mode {
        defconfig,
        savedefconfig,
        listnewconfig,
-       oldnoconfig,
 };
 static enum input_mode input_mode = oldaskconfig;
 
@@ -454,7 +453,6 @@ static struct option long_opts[] = {
        {"alldefconfig",    no_argument,       NULL, alldefconfig},
        {"randconfig",      no_argument,       NULL, randconfig},
        {"listnewconfig",   no_argument,       NULL, listnewconfig},
-       {"noconfig",        no_argument,       NULL, oldnoconfig},
        {NULL, 0, NULL, 0}
 };
 
@@ -538,7 +536,6 @@ int main(int ac, char **av)
                case allmodconfig:
                case alldefconfig:
                case listnewconfig:
-               case oldnoconfig:
                        break;
                case '?':
                        conf_usage(progname);
@@ -572,7 +569,6 @@ int main(int ac, char **av)
        case oldaskconfig:
        case oldconfig:
        case listnewconfig:
-       case oldnoconfig:
                conf_read(NULL);
                break;
        case allnoconfig:
@@ -641,7 +637,6 @@ int main(int ac, char **av)
                /* fall through */
        case oldconfig:
        case listnewconfig:
-       case oldnoconfig:
                /* Update until a loop caused no more changes */
                do {
                        conf_cnt = 0;