From 4ffa455fe1e49c5549caeb9476e338fb4dcf9713 Mon Sep 17 00:00:00 2001 From: ed Date: Sat, 2 May 2020 15:36:32 +0200 Subject: [PATCH] scripts removed, no need for lilo --- scripts/lilo-conf-mkr.sh | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100755 scripts/lilo-conf-mkr.sh diff --git a/scripts/lilo-conf-mkr.sh b/scripts/lilo-conf-mkr.sh deleted file mode 100755 index 2a0487c..0000000 --- a/scripts/lilo-conf-mkr.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh - -IMG=$(ls /boot/vmlinuz*|sort -r|sed 1q) - -VERS=$(echo $IMG | sed 's/\/boot\/vmlinuz-//') - -INIT=/boot/initramfs-$VERS.img - -ROOT_UUID=$(cat /etc/fstab|grep "UUID"|awk '{print $1}') - -LBOOT="$1" - - -#global setup -printf "boot=$LBOOT -prompt -timeout=150 -lba32 -root=\"$ROOT_UUID\" -vga=normal -read-only -menu-title=\"edbarz9's computer\" -\n\n - -#image setup -image = $IMG -\tlabel = \"$VERS\" -\t#root = \"$ROOT_UUID\" -\tread-only -\tinitrd = $INIT\n" > /etc/lilo.conf - -lilo