updated on Wed Jan 18 08:00:29 UTC 2012
[aur-mirror.git] / kernel26-zen / mkinitcpio-kernel26-zen.conf
blobe6943674e37b661320475d18d5e9f82475d7cb45
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 MODULES=""
9 # BINARIES
10 # This setting includes, into the CPIO image, and additional
11 # binaries a given user may wish.  This is run first, so may
12 # be used to override the actual binaries used in a given hook.
13 # (Existing files are NOT overwritten is already added)
14 # BINARIES are dependancy parsed, so you may safely ignore libraries
15 BINARIES=""
17 # FILES
18 # This setting is similar to BINARIES above, however, files are added
19 # as-is and are not parsed in anyway.  This is useful for config files.
20 # Some users may wish to include modprobe.conf for custom module options,
21 # like so:
22 #    FILES="/etc/modprobe.conf"
23 FILES="/etc/modprobe.d/modprobe.conf"
25 # HOOKS
26 # This is the most important setting in this file.  The HOOKS control the
27 # modules and scripts added to the image, and what happens at boot time.
28 # Order is important, and it is recommended that you do not change the
29 # order in which HOOKS are added.  Run 'mkinitcpio -H <hook name>' for
30 # help on a given hook.
31 # 'base' is _required_ unless you know precisely what you are doing.
32 # 'udev' is _required_ in order to automatically load modules
33 # 'modload' may be used in place of 'udev', but is not recommended
34 # 'filesystems' is _required_ unless you specify your fs modules in MODULES
35 # Examples:
36 #    This setup specifies all modules in the MODULES setting above.
37 #    No raid, lvm2, or encrypted root is needed.
38 #    HOOKS="base"
40 #    This setup will autodetect all modules for your system and should
41 #    work as a sane default
42 #    HOOKS="base udev autodetect pata scsi sata filesystems"
44 #    This is identical to the above, except the old ide subsystem is
45 #    used for IDE devices instead of the new pata subsystem.
46 #    HOOKS="base udev autodetect ide scsi sata filesystems"
48 #    This setup will generate a 'full' image which supports most systems.
49 #    No autodetection is done.
50 #    HOOKS="base udev pata scsi sata usb filesystems"
52 #    This setup assembles an pata raid array with an encrypted root FS.
53 #    Note: See 'mkinitcpio -H raid' for more information on raid devices.
54 #    HOOKS="base udev pata raid encrypt filesystems"
56 #    This setup loads an lvm2 volume group on a usb device.
57 #    HOOKS="base udev usb lvm2 filesystems"
58 HOOKS="base udev autodetect scsi sata filesystems"
60 # COMPRESSION
61 # Use this to compress the initramfs image. With kernels earlier than
62 # 2.6.30, only gzip is supported, which is also the default. Newer kernels
63 # support gzip, bzip2 and lzma.
64 #COMPRESSION="gzip"
65 #COMPRESSION="bzip2"
66 COMPRESSION="lzma"