makedevs: fix help text discrepancies

This commit is contained in:
Denis Vlasenko 2008-08-01 02:15:51 +00:00
parent e1fa817995
commit 9ef1a5ddc1

View File

@ -2298,18 +2298,19 @@
#define makedevs_trivial_usage \ #define makedevs_trivial_usage \
"NAME TYPE MAJOR MINOR FIRST LAST [s]" "NAME TYPE MAJOR MINOR FIRST LAST [s]"
#define makedevs_full_usage "\n\n" \ #define makedevs_full_usage "\n\n" \
"Create a range of block or character special files\n\n" \ "Create a range of block or character special files" \
"TYPEs include:\n" \ "\n" \
" b Make a block device\n" \ "\nTYPE is:" \
" c or u Make a character device\n" \ "\n b Block device" \
" p Make a named pipe. MAJOR and MINOR are ignored\n" \ "\n c Character device" \
"\n" \ "\n f FIFO, MAJOR and MINOR are ignored" \
"FIRST specifies the number appended to NAME to create the first device.\n" \ "\n" \
"LAST specifies the number of the last item that should be created\n" \ "\nFIRST..LAST specify numbers appended to NAME." \
"If 's' is the last argument, the base device is created as well.\n\n" \ "\nIf 's' is the last argument, the base device is created as well." \
"For example:\n" \ "\n" \
" makedevs /dev/ttyS c 4 66 2 63 -> ttyS2-ttyS63\n" \ "\nExamples:" \
" makedevs /dev/hda b 3 0 0 8 s -> hda,hda1-hda8" "\n makedevs /dev/ttyS c 4 66 2 63 -> ttyS2-ttyS63" \
"\n makedevs /dev/hda b 3 0 0 8 s -> hda,hda1-hda8"
#define makedevs_example_usage \ #define makedevs_example_usage \
"# makedevs /dev/ttyS c 4 66 2 63\n" \ "# makedevs /dev/ttyS c 4 66 2 63\n" \
"[creates ttyS2-ttyS63]\n" \ "[creates ttyS2-ttyS63]\n" \
@ -2325,10 +2326,10 @@
"Device table entries take the form of:\n" \ "Device table entries take the form of:\n" \
"<type> <mode> <uid> <gid> <major> <minor> <start> <inc> <count>\n" \ "<type> <mode> <uid> <gid> <major> <minor> <start> <inc> <count>\n" \
"Where name is the file name, type can be one of:\n" \ "Where name is the file name, type can be one of:\n" \
" f A regular file\n" \ " f Regular file\n" \
" d Directory\n" \ " d Directory\n" \
" c Character special device file\n" \ " c Character device\n" \
" b Block special device file\n" \ " b Block device\n" \
" p Fifo (named pipe)\n" \ " p Fifo (named pipe)\n" \
"uid is the user id for the target file, gid is the group id for the\n" \ "uid is the user id for the target file, gid is the group id for the\n" \
"target file. The rest of the entries (major, minor, etc) apply to\n" \ "target file. The rest of the entries (major, minor, etc) apply to\n" \