7 lines
177 B
Bash
7 lines
177 B
Bash
#!/bin/sh
|
|
cd /boot/extlinux
|
|
sed -i.old -e s,/boot,,g extlinux.conf
|
|
sed -i -e s,/usr/lib/.*,/fdt/,g extlinux.conf
|
|
sed -i -e 's/append.*$/& audit=0 fsck.repair=1/' extlinux.conf
|
|
|