diff options
author | Bernhard Reutner-Fischer | 2008-05-08 10:40:56 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2008-05-08 10:40:56 +0000 |
commit | 0abe9d96eee3bcdcdd766a863eb711ec004f2f4f (patch) | |
tree | 7ab1ff1de7061317ff137bd1ac54a36634185008 | |
parent | 378481ed1e0ae1d731243f8082d82013cf18c11e (diff) | |
download | busybox-0abe9d96eee3bcdcdd766a863eb711ec004f2f4f.zip busybox-0abe9d96eee3bcdcdd766a863eb711ec004f2f4f.tar.gz |
- correct usage helptext of ifupdown
-rw-r--r-- | include/usage.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/include/usage.h b/include/usage.h index aa1b8b6..97f4318 100644 --- a/include/usage.h +++ b/include/usage.h @@ -1613,27 +1613,31 @@ " # ifenslave -c bond0 eth0\n" \ #define ifup_trivial_usage \ - "[-ahinv] ifaces..." + "[-ain"USE_FEATURE_IFUPDOWN_MAPPING("m")"vf] ifaces..." #define ifup_full_usage \ "Options:" \ "\n -a De/configure all interfaces automatically" \ "\n -i FILE Use FILE for interface definitions" \ "\n -n Print out what would happen, but don't do it" \ + USE_FEATURE_IFUPDOWN_MAPPING( \ "\n (note: doesn't disable mappings)" \ - "\n -v Print out what would happen before doing it" \ "\n -m Don't run any mappings" \ + ) \ + "\n -v Print out what would happen before doing it" \ "\n -f Force de/configuration" \ #define ifdown_trivial_usage \ - "[-ahinv] ifaces..." + "[-ain"USE_FEATURE_IFUPDOWN_MAPPING("m")"vf] ifaces..." #define ifdown_full_usage \ "Options:" \ "\n -a De/configure all interfaces automatically" \ "\n -i FILE Use FILE for interface definitions" \ "\n -n Print out what would happen, but don't do it" \ + USE_FEATURE_IFUPDOWN_MAPPING( \ "\n (note: doesn't disable mappings)" \ - "\n -v Print out what would happen before doing it" \ "\n -m Don't run any mappings" \ + ) \ + "\n -v Print out what would happen before doing it" \ "\n -f Force de/configuration" \ #define inetd_trivial_usage \ |