Compare commits

..

No commits in common. "7df52856a089b8fdd40e25096d95d9015775ee0b" and "a8b169266609fc080b4b4bd88f46a5873e466455" have entirely different histories.

2 changed files with 0 additions and 15 deletions

View file

@ -11,7 +11,6 @@ table ip firewall {
134.245.71.138, 134.245.71.138,
134.245.71.168, 134.245.71.168,
134.245.64.40, 134.245.64.40,
134.245.71.71,
}; };
} }

View file

@ -1,14 +0,0 @@
#!/bin/sh
KERNEL=$(ls /boot/vmlinuz-*-d3d | tail -1 | sed s,/boot/,,)
RUNLEVEL=3
cat <<END
menuentry 'Debian Linux sid, kernel ${KERNEL}' --class debian --class gnu-linux --class gnu --class os {
load_video
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
echo 'Loading ${KERNEL} ...'
linux /boot/${KERNEL} root=/dev/mmcblk0p2 ro net.ifnames=0 $RUNLEVEL
}
END