diff options
Diffstat (limited to 'uname.c')
-rw-r--r-- | uname.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -43,6 +43,7 @@ | |||
43 | 43 | ||
44 | static const char uname_usage[] = | 44 | static const char uname_usage[] = |
45 | "uname [OPTION]...\n\n" | 45 | "uname [OPTION]...\n\n" |
46 | #ifndef BB_FEATURE_TRIVIAL_HELP | ||
46 | "Print certain system information. With no OPTION, same as -s.\n\n" | 47 | "Print certain system information. With no OPTION, same as -s.\n\n" |
47 | "Options:\n" | 48 | "Options:\n" |
48 | "\t-a\tprint all information\n" | 49 | "\t-a\tprint all information\n" |
@@ -52,7 +53,9 @@ static const char uname_usage[] = | |||
52 | "\t-s\tprint the operating system name\n" | 53 | "\t-s\tprint the operating system name\n" |
53 | 54 | ||
54 | "\t-p\tprint the host processor type\n" | 55 | "\t-p\tprint the host processor type\n" |
55 | "\t-v\tprint the operating system version\n"; | 56 | "\t-v\tprint the operating system version\n" |
57 | #endif | ||
58 | ; | ||
56 | 59 | ||
57 | 60 | ||
58 | static void print_element(unsigned int mask, char *element); | 61 | static void print_element(unsigned int mask, char *element); |