diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 36 |
1 files changed, 30 insertions, 6 deletions
diff --git a/include/usage.h b/include/usage.h index 017cb9c3e..831a9a74a 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -1672,13 +1672,37 @@ | |||
1672 | 1672 | ||
1673 | #ifdef CONFIG_FEATURE_MAKEDEVS_TABLE | 1673 | #ifdef CONFIG_FEATURE_MAKEDEVS_TABLE |
1674 | #define makedevs_trivial_usage \ | 1674 | #define makedevs_trivial_usage \ |
1675 | "[-r rootdir] [device_table]" | 1675 | "[-d device_table] rootdir" |
1676 | #define makedevs_full_usage \ | 1676 | #define makedevs_full_usage \ |
1677 | "Creates a batch of special files as specified in a device table\n" \ | 1677 | "Creates a range of special files as specified in a device table.\n" \ |
1678 | "The device table has one line per device group, each group is of\n" \ | 1678 | "Device table entries take the form of:\n" \ |
1679 | "the format\n" \ | 1679 | "type mode user group major minor start increment count\n\n" \ |
1680 | "\ttype mode user group major minor start increment count\n" \ | 1680 | "<type> <mode> <uid> <gid> <major> <minor> <start> <inc> <count>\n" \ |
1681 | "a '-' may be used for blank entries\n" | 1681 | "Where name is the file name, type can be one of:\n" \ |
1682 | " f A regular file\n" \ | ||
1683 | " d Directory\n" \ | ||
1684 | " c Character special device file\n" \ | ||
1685 | " b Block special device file\n" \ | ||
1686 | " p Fifo (named pipe)\n" \ | ||
1687 | "uid is the user id for the target file, gid is the group id for the\n" \ | ||
1688 | "target file. The rest of the entries (major, minor, etc) apply to\n" \ | ||
1689 | "to device special files. A '-' may be used for blank entries.\n\n" \ | ||
1690 | #define makedevs_example_usage \ | ||
1691 | "For example:\n" \ | ||
1692 | "<name> <type> <mode><uid><gid><major><minor><start><inc><count>\n" \ | ||
1693 | "/dev d 755 0 0 - - - - -\n" \ | ||
1694 | "/dev/console c 666 0 0 5 1 - - -\n" \ | ||
1695 | "/dev/null c 666 0 0 1 3 0 0 -\n" \ | ||
1696 | "/dev/zero c 666 0 0 1 5 0 0 -\n" \ | ||
1697 | "/dev/hda b 640 0 0 3 0 0 0 -\n" \ | ||
1698 | "/dev/hda b 640 0 0 3 1 1 1 15\n\n" \ | ||
1699 | "Will Produce:\n" \ | ||
1700 | "/dev\n" \ | ||
1701 | "/dev/console\n" \ | ||
1702 | "/dev/null\n" \ | ||
1703 | "/dev/zero\n" \ | ||
1704 | "/dev/hda\n" \ | ||
1705 | "/dev/hda[0-15]" | ||
1682 | #endif | 1706 | #endif |
1683 | 1707 | ||
1684 | #ifdef CONFIG_FEATURE_MD5_SHA1_SUM_CHECK | 1708 | #ifdef CONFIG_FEATURE_MD5_SHA1_SUM_CHECK |