diff options
Diffstat (limited to 'applets')
-rw-r--r-- | applets/usage.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/applets/usage.c b/applets/usage.c index 4f6a569d4..a35817f9f 100644 --- a/applets/usage.c +++ b/applets/usage.c | |||
@@ -5,6 +5,17 @@ | |||
5 | * object directory */ | 5 | * object directory */ |
6 | #include "../include/autoconf.h" | 6 | #include "../include/autoconf.h" |
7 | 7 | ||
8 | /* Since we can't use platform.h, have to do this again by hand: */ | ||
9 | #if ENABLE_NOMMU | ||
10 | #define BB_MMU 0 | ||
11 | #define USE_FOR_NOMMU(...) __VA_ARGS__ | ||
12 | #define USE_FOR_MMU(...) | ||
13 | #else | ||
14 | #define BB_MMU 1 | ||
15 | #define USE_FOR_NOMMU(...) | ||
16 | #define USE_FOR_MMU(...) __VA_ARGS__ | ||
17 | #endif | ||
18 | |||
8 | static const char usage_messages[] = "" | 19 | static const char usage_messages[] = "" |
9 | #define MAKE_USAGE | 20 | #define MAKE_USAGE |
10 | #include "usage.h" | 21 | #include "usage.h" |