From 20dca2981d09f2733d81ebe8254d9297e669dfde Mon Sep 17 00:00:00 2001 From: pkr Date: Thu, 14 Nov 2024 00:28:22 +0100 Subject: [PATCH] Look for old configs in /boot folder as well --- lfsSetup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfsSetup.sh b/lfsSetup.sh index 116450a..fd9742d 100755 --- a/lfsSetup.sh +++ b/lfsSetup.sh @@ -143,7 +143,7 @@ patchKernelVersion "$MAIN_VER" "$MINOR_VER" "$PATCH_VER" "$MD5_SUM" "$DIR_BOOK/p KERNEL_CONFIG="$HOME/config-$LATEST_KERNEL_VER" if [ ! -f "$KERNEL_CONFIG" ] ; then # Look for older config files in the user's home directory - CONFIG_FILE=$(find "$HOME" -type f -iwholename "$HOME/config-*") + CONFIG_FILE=$(find /boot "$HOME" -type f -iwholename "$HOME/config-*" -o iwholename "/boot/config-*") if [ -z "$CONFIG_FILE" ] ; then echo "Cannot find $KERNEL_CONFIG and also no old configs found to create it." exit 4 @@ -262,4 +262,4 @@ if [ -n "$GRUB_SCRIPT" ] ; then fi sed -i "/set root=/d;/^ .*linux /c\ linux \${knl_name} root=\${lnx_root} ro \${opts}" "$GRUB_SCRIPT" sed -i '/set timeout/a set color_normal=white/black\nset color_highlight=yellow/black\nset menu_color_normal=light-blue/black\nset menu_color_highlight=yellow/blue' "$GRUB_SCRIPT" -fi \ No newline at end of file +fi