diff options
author | Eric Andersen | 2005-06-09 10:16:02 +0000 |
---|---|---|
committer | Eric Andersen | 2005-06-09 10:16:02 +0000 |
commit | 3d9256225fe96b06f6e895f693c9b17519758b6c (patch) | |
tree | e2d8a335fd223f33b787679a2cdc608dee2b3cbe /include | |
parent | 06813d066b379ce74801a6c125213a03104fc4e1 (diff) | |
download | busybox-3d9256225fe96b06f6e895f693c9b17519758b6c.zip busybox-3d9256225fe96b06f6e895f693c9b17519758b6c.tar.gz |
About time to just apply this and kill off the patches
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h index ae858bd..484c015 100644 --- a/include/usage.h +++ b/include/usage.h @@ -1622,6 +1622,7 @@ #define lsmod_full_usage \ "List the currently loaded kernel modules." +#ifdef CONFIG_FEATURE_MAKEDEVS_LEAF #define makedevs_trivial_usage \ "NAME TYPE MAJOR MINOR FIRST LAST [s]" #define makedevs_full_usage \ @@ -1641,6 +1642,18 @@ "[creates ttyS2-ttyS63]\n" \ "# makedevs /dev/hda b 3 0 0 8 s\n" \ "[creates hda,hda1-hda8]\n" +#endif + +#ifdef CONFIG_FEATURE_MAKEDEVS_TABLE +#define makedevs_trivial_usage \ + "[-r rootdir] [device_table]" +#define makedevs_full_usage \ + "Creates a batch of special files as specified in a device table\n" \ + "The device table has one line per device group, each group is of\n" \ + "the format\n" \ + "\ttype mode user group major minor start increment count\n" \ + "a '-' may be used for blank entries\n" +#endif #ifdef CONFIG_FEATURE_MD5_SHA1_SUM_CHECK #define USAGE_MD5_SHA1_SUM_CHECK(a) a |