summaryrefslogtreecommitdiffstats
path: root/mkinitcpio.d/example.preset
blob: 3fb32f1b67133343952b74d310a9a8b61ac86b36 (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
26
# Example mkinitcpio preset file

# preset names
PRESETS=('default' 'fallback')

# ALL_kver is used if presetname_kver is not set
# note for distribution kernels: this should be in a separate file
# and read like this:
# . /etc/mkinitcpio.d/exmaple.kver
ALL_kver='2.6.24-ARCH'
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="2.6.18-ARCH"
#default_config="/etc/mkinitcpio.conf"
default_image="/tmp/kernel26.img"
default_options=""

#fallback_kver="2.6.18-ARCH"
#fallback_config="/etc/mkinitcpio.conf"
fallback_image="/tmp/kernel26-fallback.img"
fallback_options="-S autodetect"