blob: a0479d226500df88ba77dca3ab8549e55065c0a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Example mkinitcpio preset file
# preset names
PRESETS=('default' 'fallback')
# ALL_kver is used if presetname_kver is not set
# The kver can be specified as an explicit kernel version or
# as the path to an kernel image.
ALL_kver='/boot/vmlinuz-linux'
ALL_config='/etc/mkinitcpio.conf'
# presetname_kver - the kernel version (omit if ALL_kver should be used)
# presetname_config - the configuration file (omit if ALL_config should be used)
# presetname_image - the filename of generated image
# presetname_options - any extra options
#default_kver="3.0-ARCH"
#default_config="/etc/mkinitcpio.conf"
default_image="/tmp/initramfs-linux.img"
default_options=""
#fallback_kver="3.0-ARCH"
#fallback_config="/etc/mkinitcpio.conf"
fallback_image="/tmp/initramfs-linux-fallback.img"
fallback_options="-S autodetect"
|