98-tegra-extlinux-conf 314 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#!/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