blob: 991a7a27d0e9f81d98a20760ac3e57a4b7523db5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#
# Configuration for Kexec
#
# Path to kernel, default to stock arch kernel
KPATH="/boot/vmlinuz-linux"
# Root partition
# The default attempts to autodetect
ROOTPART="$(awk '/^[ \t]*[^#]/ { if ($2 == "/") { print $1; }}' /etc/fstab)"
# Additional kernel parameters
KPARAM="ro"
# Path to initrd image, default to stock arch kernel
INITRD="/boot/initramfs-linux.img"
|