Initial commit: Uploaded everything from abs/core
[arch-rock.git] / base / kernel26 / mkinitcpio-kernel26.conf
blobbcf3a2e3af510d9d2e070646d327a9d86e50e3f7
1 # vim:set ft=sh
2 # MODULES
3 # The following modules are loaded before any boot hooks are
4 # run.  Advanced users may wish to specify all system modules
5 # in this array.  For instance:
6 #     MODULES="piix ide_disk reiserfs"
7 # BusLogic is added to support VMWARE arch booting in fallback image
8 MODULES="BusLogic"
10 # BINARIES
11 # This setting includes, into the CPIO image, and additional
12 # binaries a given user may wish.  This is run first, so may
13 # be used to override the actual binaries used in a given hook.
14 # (Existing files are NOT overwritten is already added)
15 # BINARIES are dependancy parsed, so you may safely ignore libraries
16 #BINARIES=""
18 # FILES
19 # This setting is similar to BINARIES above, however, files are added
20 # as-is and are not parsed in anyway.  This is useful for config files.
21 # Some users may wish to include modprobe.conf for custom module options,
22 # like so:
23 #    FILES="/etc/modprobe.conf"
24 FILES=""
26 # HOOKS
27 # This is the most important setting in this file.  The HOOKS control the
28 # modules and scripts added to the image, and what happens at boot time.
29 # Order is important, and it is recommended that you do not change the
30 # order in which HOOKS are added.  Run 'mkinitcpio -H <hook name>' for
31 # help on a given hook.
32 # 'base' is _required_ unless you know precisely what you are doing.
33 # 'udev' is _required_ in order to automatically load modules
34 # 'modload' may be used in place of 'udev', but is not recommended
35 # 'filesystems' is _required_ unless you specify your fs modules in MODULES
36 # Examples:
37 #    This setup specifies all modules in the MODULES setting above.
38 #    No raid, lvm, or encrypted root is needed.
39 #    HOOKS="base"
41 #    This setup will autodetect all modules for your system and should
42 #    work as a sane default
43 #    HOOKS="base udev autodetect ide scsi sata filesystems"
45 #    This setup will generate a 'full' image which supports most systems.
46 #    No autodetection is done.
47 #    HOOKS="base udev ide scsi sata usb filesystems"
49 #    This setup assembles an ide raid array with an encrypted root FS.
50 #    Note: See 'mkinitcpio -H raid' for more information on raid devices.
51 #    HOOKS="base udev ide filesystems raid encrypt"
53 #    This setup loads an LVM volume group on a usb device.
54 #    HOOKS="base udev usb filesystems lvm"
55 HOOKS="base udev ide pata scsi sata usbinput raid filesystems"