diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-04-30 12:32:04 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2009-08-18 22:01:08 -0400 |
commit | de481560eb0bd9d940b90311eba85711e4b1150b (patch) | |
tree | 51001590f3a317a6de96d8fa32c86c5be63579dd /kernel/Makefile | |
parent | 6be51ffc1791b72d11cef9bb0a578fe8c5d64c6a (diff) |
kconfig: keep config.gz around even if CONFIG_IKCONFIG_PROC is not set
If CONFIG_IKCONFIG is set but CONFIG_IKCONFIG_PROC is not, then
gcc will optimize the config.gz out, because nobody uses it.
This patch adds "__used" to the config.gz data to keep it around so that
code like extract-ikconfig can still find it.
[ Impact: allow extract-ikconfig to find config.gz ]
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index 2093a691f1c2..d0c84e6bf50a 100644 --- a/kernel/Makefile +++ b/kernel/Makefile | |||
@@ -119,7 +119,7 @@ $(obj)/config_data.gz: .config FORCE | |||
119 | $(call if_changed,gzip) | 119 | $(call if_changed,gzip) |
120 | 120 | ||
121 | quiet_cmd_ikconfiggz = IKCFG $@ | 121 | quiet_cmd_ikconfiggz = IKCFG $@ |
122 | cmd_ikconfiggz = (echo "static const char kernel_config_data[] = MAGIC_START"; cat $< | scripts/bin2c; echo "MAGIC_END;") > $@ | 122 | cmd_ikconfiggz = (echo "static const char kernel_config_data[] __used = MAGIC_START"; cat $< | scripts/bin2c; echo "MAGIC_END;") > $@ |
123 | targets += config_data.h | 123 | targets += config_data.h |
124 | $(obj)/config_data.h: $(obj)/config_data.gz FORCE | 124 | $(obj)/config_data.h: $(obj)/config_data.gz FORCE |
125 | $(call if_changed,ikconfiggz) | 125 | $(call if_changed,ikconfiggz) |