updated on Sat Jan 14 12:12:45 UTC 2012
[aur-mirror.git] / linux-n130 / mkinitcpio-N130.conf
blob36e6e30902687192475918bb71cc0ca16910ff3f
1 # vim:set ft=sh
3 # This file is part of linux-n130
5 # MODULES
6 # The following modules are loaded before any boot hooks are
7 # run.  Advanced users may wish to specify all system modules
8 # in this array.  For instance:
9 #     MODULES="piix ide_disk reiserfs"
10 MODULES=""
12 # BINARIES
13 # This setting includes, into the CPIO image, and additional
14 # binaries a given user may wish.  This is run first, so may
15 # be used to override the actual binaries used in a given hook.
16 # (Existing files are NOT overwritten is already added)
17 # BINARIES are dependancy parsed, so you may safely ignore libraries
18 BINARIES=""
20 # FILES
21 # This setting is similar to BINARIES above, however, files are added
22 # as-is and are not parsed in anyway.  This is useful for config files.
23 # Some users may wish to include modprobe.conf for custom module options,
24 # like so:
25 #    FILES="/etc/modprobe.conf"
26 FILES=""
28 # HOOKS
29 # Linux-n130 does not need any HOOKS (as you might have noticed, 
30 # there is no initrd image by default), because all modules needed to
31 # boot are compiled into the kernel. The standard kernel hibernate/resume 
32 # routine works just fine and no hook is needed either. 
33 # However, if you need hooks for encryption or uswsusp/tuxonice etc, 
34 # add them below and run "mkinitcpio -p linux-N130".
35 HOOKS="base udev"
37 # COMPRESSION
38 # Use this to compress the initramfs image. With kernels earlier than
39 # 2.6.30, only gzip is supported, which is also the default. Newer kernels
40 # support gzip, bzip2 and lzma. Kernels 2.6.38 and later support xz
41 # compression.
42 #COMPRESSION="gzip"
43 #COMPRESSION="bzip2"
44 #COMPRESSION="lzma"
45 #COMPRESSION="xz"
46 #COMPRESSION="lzop"
48 # COMPRESSION_OPTIONS
49 # Additional options for the compressor
50 #COMPRESSION_OPTIONS=""