X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=sidebyside;f=frontends%2Fconf%2Fconf.c;h=6c204318bc942dca084224ffa1b9c913b58b5e3a;hb=2392e80ef84b4bdb957658eb34e467d66a5f1b84;hp=fef75fc756f40bfa5ae89c942e49f80719204bb9;hpb=c7af2f135f72a51f9efac285736b31e937dcdbf3;p=kconfig-frontends diff --git a/frontends/conf/conf.c b/frontends/conf/conf.c index fef75fc..6c20431 100644 --- a/frontends/conf/conf.c +++ b/frontends/conf/conf.c @@ -471,7 +471,7 @@ static struct option long_opts[] = { static void conf_usage(const char *progname) { - printf("Usage: %s [option] \n", progname); + printf("Usage: %s [-s] [option] \n", progname); printf("[option] is _one_ of the following:\n"); printf(" --listnewconfig List new options\n"); printf(" --oldaskconfig Start a new configuration using a line-oriented program\n"); @@ -501,7 +501,11 @@ int main(int ac, char **av) tty_stdio = isatty(0) && isatty(1) && isatty(2); - while ((opt = getopt_long(ac, av, "", long_opts, NULL)) != -1) { + while ((opt = getopt_long(ac, av, "s", long_opts, NULL)) != -1) { + if (opt == 's') { + conf_set_message_callback(NULL); + continue; + } input_mode = (enum input_mode)opt; switch (opt) { case silentoldconfig: