diff options
author | Roman Zippel <zippel@linux-m68k.org> | 2006-06-09 01:12:42 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-06-09 01:31:30 -0400 |
commit | 2e3646e51b2d6415549b310655df63e7e0d7a080 (patch) | |
tree | f717c0ede91122ab776a6b0fce9b8c941797f170 /scripts/kconfig/expr.h | |
parent | 669bfad906522e74ee8d962801552a8c224c0d63 (diff) |
kconfig: integrate split config into silentoldconfig
Now that kconfig can load multiple configurations, it becomes simple to
integrate the split config step, by simply comparing the new .config file with
the old auto.conf (and then saving the new auto.conf). A nice side effect is
that this saves a bit of disk space and cache, as no data needs to be read
from or saved into the splitted config files anymore (e.g. include/config is
now 648KB instead of 5.2MB).
Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/kconfig/expr.h')
-rw-r--r-- | scripts/kconfig/expr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/kconfig/expr.h b/scripts/kconfig/expr.h index 998cf4f656b8..ffd42c7007ee 100644 --- a/scripts/kconfig/expr.h +++ b/scripts/kconfig/expr.h | |||
@@ -65,6 +65,7 @@ enum symbol_type { | |||
65 | 65 | ||
66 | enum { | 66 | enum { |
67 | S_DEF_USER, /* main user value */ | 67 | S_DEF_USER, /* main user value */ |
68 | S_DEF_AUTO, | ||
68 | }; | 69 | }; |
69 | 70 | ||
70 | struct symbol { | 71 | struct symbol { |
@@ -97,7 +98,7 @@ struct symbol { | |||
97 | #define SYMBOL_WARNED 0x8000 | 98 | #define SYMBOL_WARNED 0x8000 |
98 | #define SYMBOL_DEF 0x10000 | 99 | #define SYMBOL_DEF 0x10000 |
99 | #define SYMBOL_DEF_USER 0x10000 | 100 | #define SYMBOL_DEF_USER 0x10000 |
100 | #define SYMBOL_DEF2 0x20000 | 101 | #define SYMBOL_DEF_AUTO 0x20000 |
101 | #define SYMBOL_DEF3 0x40000 | 102 | #define SYMBOL_DEF3 0x40000 |
102 | #define SYMBOL_DEF4 0x80000 | 103 | #define SYMBOL_DEF4 0x80000 |
103 | 104 | ||