diff options
author | Thomas Bächler <thomas@archlinux.org> | 2011-05-14 12:43:39 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2011-05-14 12:43:39 +0200 |
commit | 34d985ae0ecdc18223ea7f42b9a4b2bfae657cc7 (patch) | |
tree | 321cc86428db0752e26bf0fb98a66009b405e000 | |
parent | 31f99cb49849cc64873606b1fca9b81fbaf9795d (diff) | |
download | mkinitcpio-34d985ae0ecdc18223ea7f42b9a4b2bfae657cc7.tar.gz mkinitcpio-34d985ae0ecdc18223ea7f42b9a4b2bfae657cc7.tar.xz |
Improve comments in mkinitcpio.conf
Nobody ever read these comments before, but somebody now
noticed poor grammar in them.
Thanks to Semitsoglou-Tsiapos Dimitrios for the improvements.
-rw-r--r-- | mkinitcpio.conf | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/mkinitcpio.conf b/mkinitcpio.conf index b229823..1b8e502 100644 --- a/mkinitcpio.conf +++ b/mkinitcpio.conf @@ -7,17 +7,17 @@ MODULES="" # BINARIES -# This setting includes, into the CPIO image, and additional -# binaries a given user may wish. This is run first, so may -# be used to override the actual binaries used in a given hook. -# (Existing files are NOT overwritten is already added) -# BINARIES are dependancy parsed, so you may safely ignore libraries +# This setting includes any additional binaries a given user may +# wish into the CPIO image. This is run first, so it may be used to +# override the actual binaries used in a given hook. +# (Existing files are NOT overwritten if already added) +# BINARIES are dependency parsed, so you may safely ignore libraries BINARIES="" # FILES # This setting is similar to BINARIES above, however, files are added -# as-is and are not parsed in anyway. This is useful for config files. -# Some users may wish to include modprobe.conf for custom module options, +# as-is and are not parsed in any way. This is useful for config files. +# Some users may wish to include modprobe.conf for custom module options # like so: # FILES="/etc/modprobe.conf" FILES="" @@ -32,27 +32,27 @@ FILES="" # 'udev' is _required_ in order to automatically load modules # 'filesystems' is _required_ unless you specify your fs modules in MODULES # Examples: -# This setup specifies all modules in the MODULES setting above. -# No raid, lvm2, or encrypted root is needed. +## This setup specifies all modules in the MODULES setting above. +## No raid, lvm2, or encrypted root is needed. # HOOKS="base" # -# This setup will autodetect all modules for your system and should -# work as a sane default +## This setup will autodetect all modules for your system and should +## work as a sane default # HOOKS="base udev autodetect pata scsi sata filesystems" # -# This is identical to the above, except the old ide subsystem is -# used for IDE devices instead of the new pata subsystem. +## This is identical to the above, except the old ide subsystem is +## used for IDE devices instead of the new pata subsystem. # HOOKS="base udev autodetect ide scsi sata filesystems" # -# This setup will generate a 'full' image which supports most systems. -# No autodetection is done. +## This setup will generate a 'full' image which supports most systems. +## No autodetection is done. # HOOKS="base udev pata scsi sata usb filesystems" # -# This setup assembles an pata raid array with an encrypted root FS. -# Note: See 'mkinitcpio -H raid' for more information on raid devices. +## This setup assembles a pata raid array with an encrypted root FS. +## Note: See 'mkinitcpio -H raid' for more information on raid devices. # HOOKS="base udev pata raid encrypt filesystems" # -# This setup loads an lvm2 volume group on a usb device. +## This setup loads an lvm2 volume group on a usb device. # HOOKS="base udev usb lvm2 filesystems" HOOKS="base udev autodetect pata scsi sata filesystems" |