Compare commits

..

3 commits

Author SHA1 Message Date
Dostel 3D project
7df52856a0 Merge branch 'main' of /home/falbala/stephan/solo/eda/arm/irena/d3direna 2023-11-28 13:34:01 +01:00
Dostel 3D project
b32dda27bb firewall: add etbs to whitelist for backups 2023-11-28 12:25:08 +01:00
Dostel 3D project
11bf387a80 add grub-08-upboard with boot runlevel 3 2023-11-27 18:18:47 +01:00
2 changed files with 15 additions and 0 deletions

View file

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

14
etc/grub-08-upboard Executable file
View file

@ -0,0 +1,14 @@
#!/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