summaryrefslogtreecommitdiff
path: root/setup-disk.in
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2018-06-13 06:48:54 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2018-06-13 06:48:54 +0000
commit36f07b2cc8d50f3cf91bf6fc65651581f9cee4c5 (patch)
tree10e746ce4465669fa8cbeb44f054a702afb45436 /setup-disk.in
parentcbf0eb9f7d9fedc513d529a192013436115604cc (diff)
downloadalpine-conf-36f07b2cc8d50f3cf91bf6fc65651581f9cee4c5.zip
setup-disk: simplify grub config generation
remove variable that is not needed
Diffstat (limited to 'setup-disk.in')
-rw-r--r--setup-disk.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/setup-disk.in b/setup-disk.in
index 9731254..a5c0553 100644
--- a/setup-disk.in
+++ b/setup-disk.in
@@ -307,14 +307,13 @@ setup_grub() {
fi
# setup GRUB config
- local kernel=vmlinuz-$KERNEL_FLAVOR
# all_video is needed to remove the video error on boot
cat > "$mnt"/boot/grub/grub.cfg <<- EOF
set timeout=2
insmod all_video
menuentry "Alpine Linux" {
- linux /boot/$kernel modules=$modules root=$root $kernel_opts
+ linux /boot/vmlinuz-$KERNEL_FLAVOR modules=$modules root=$root $kernel_opts
initrd /boot/initramfs-$KERNEL_FLAVOR
}
EOF