You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
314 B
18 lines
314 B
3 years ago
|
#!/bin/sh
|
||
|
|
||
|
# Rewrite extlinux.conf
|
||
|
mkdir -p /boot/extlinux
|
||
|
cat > /boot/extlinux/extlinux.conf << EOF
|
||
|
menu title ALT Boot Options
|
||
|
|
||
|
default linux
|
||
|
timeout 20
|
||
|
|
||
|
append ${cbootargs} rootfstype=ext4 root=LABEL=ROOT rw rootwait console=tty1
|
||
|
|
||
|
label linux
|
||
|
menu label linux
|
||
|
linux /boot/vmlinuz
|
||
|
initrd /boot/initrd.img
|
||
|
EOF
|