diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-11-03 00:07:31 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-11-03 00:07:31 +0100 |
commit | 18b461925c6297f241c2b51f96f5d6d5f5de9e1d (patch) | |
tree | 7b73229b62182862945d82b77376d3d689bfba8d /init | |
parent | 17f4aca556307ddc7f86dc0a781eabef8360f732 (diff) | |
download | busybox-w32-18b461925c6297f241c2b51f96f5d6d5f5de9e1d.tar.gz busybox-w32-18b461925c6297f241c2b51f96f5d6d5f5de9e1d.tar.bz2 busybox-w32-18b461925c6297f241c2b51f96f5d6d5f5de9e1d.zip |
bootchartd: warn if .config looks wrong
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'init')
-rw-r--r-- | init/bootchartd.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/init/bootchartd.c b/init/bootchartd.c index 9fd623357..c7388c99e 100644 --- a/init/bootchartd.c +++ b/init/bootchartd.c | |||
@@ -60,6 +60,12 @@ | |||
60 | # endif | 60 | # endif |
61 | #endif | 61 | #endif |
62 | 62 | ||
63 | #if !ENABLE_TAR && !ENABLE_WERROR | ||
64 | # warning Note: bootchartd requires tar command, but you did not select it. | ||
65 | #elif !ENABLE_FEATURE_SEAMLESS_GZ && !ENABLE_WERROR | ||
66 | # warning Note: bootchartd requires tar -z support, but you did not select it. | ||
67 | #endif | ||
68 | |||
63 | #define BC_VERSION_STR "0.8" | 69 | #define BC_VERSION_STR "0.8" |
64 | 70 | ||
65 | /* For debugging, set to 0: | 71 | /* For debugging, set to 0: |