diff options
author | Chris Packham <judge.packham@gmail.com> | 2020-12-10 19:53:19 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2021-02-02 20:06:32 +1300 |
commit | 3bf9edb36c5f1ea9715de1a2a556390540398077 (patch) | |
tree | 7ba753be014eec77fae4fabe30dd8148b4c4c4bb /kconfig/nconf.c | |
parent | acce58834d83602b5c97cb01f04c9f540e40792b (diff) | |
download | crosstool-ng-3bf9edb36c5f1ea9715de1a2a556390540398077.tar.gz crosstool-ng-3bf9edb36c5f1ea9715de1a2a556390540398077.tar.bz2 crosstool-ng-3bf9edb36c5f1ea9715de1a2a556390540398077.zip |
kconfig: Sync with upstream v5.6
This commit introduces the following upstream changes:
089b7d890f97 kconfig: Invalidate all symbols after changing to y or m.
5f2fb52fac15 kbuild: rename hostprogs-y/always to hostprogs/always-y
c8fb7d7e48d1 kconfig: fix broken dependency in randconfig-generated .config
ba82f52e2287 kconfig: fix an "implicit declaration of function" warning
a9609686042b kconfig: fix nesting of symbol help text
3460d0bc256a kconfig: distinguish between dependencies and visibility in help text
edda15f21974 kconfig: list all definitions of a symbol in help text
89b9060987d9 kconfig: Add yes2modconfig and mod2yesconfig targets.
c8138a57bbd1 kconfig: use $(PERL) in Makefile
1d1352373ebc kconfig: fix too deep indentation in Makefile
68f0d62746bc kconfig: localmodconfig: fix indentation for closing brace
5edcef8454a4 kconfig: localmodconfig: remove unused $config
adf7c5bd0674 kconfig: squash prop_alloc() into menu_add_prop()
6397d96ba5a5 kconfig: remove sym from struct property
2ffeef615b5e kconfig: remove 'prompt' argument from menu_add_prop()
024352ff8d69 kconfig: move prompt handling to menu_add_prompt() from menu_add_prop()
1be6e791383a kconfig: remove 'prompt' symbol
801b27db4638 kconfig: drop T_WORD from the RHS of 'prompt' symbol
de026ca9152c kconfig: use parent->dep as the parentdep of 'menu'
f64048a20b0c kconfig: remove the rootmenu check in menu_add_prop()
8b41fc4454e3 kbuild: create modules.builtin without Makefile.modbuiltin or tristate.conf
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'kconfig/nconf.c')
-rw-r--r-- | kconfig/nconf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kconfig/nconf.c b/kconfig/nconf.c index bee51359..49b405d8 100644 --- a/kconfig/nconf.c +++ b/kconfig/nconf.c @@ -8,6 +8,7 @@ #define _GNU_SOURCE #endif #include <string.h> +#include <strings.h> #include <stdlib.h> #include "lkc.h" |