From f0f33d394ce1513963636b78e2cf6ee4f9adeb3f Mon Sep 17 00:00:00 2001 From: theVakhovskeIsTaken Date: Wed, 28 Jun 2023 12:18:39 +0000 Subject: [PATCH] Use regular list to make it actually work --- airootfs/etc/holoinstall/pre_install/iso_build_deps.sh | 4 +++- kernel_list.bootstrap | 5 +---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/airootfs/etc/holoinstall/pre_install/iso_build_deps.sh b/airootfs/etc/holoinstall/pre_install/iso_build_deps.sh index 23bccf1..3f575e6 100644 --- a/airootfs/etc/holoinstall/pre_install/iso_build_deps.sh +++ b/airootfs/etc/holoinstall/pre_install/iso_build_deps.sh @@ -50,8 +50,10 @@ mkdir -p /etc/holoinstall/post_install/kernels wget $(pacman -Sp win600-xpad-dkms) -P /etc/holoinstall/post_install/pkgs_addon wget $(pacman -Sp linux-firmware-neptune) -P /etc/holoinstall/post_install/pkgs_addon +kernels=$(cat /etc/holoinstall/post_install/kernel_list.bootstrap) + # Download Kernels -for kernel in $(cat /etc/holoinstall/post_install/kernel_list.bootstrap) +for kernel in $kernels do wget $(pacman -Sp $kernel) -P /etc/holoinstall/post_install/kernels done diff --git a/kernel_list.bootstrap b/kernel_list.bootstrap index f133aaf..ef4f71e 100644 --- a/kernel_list.bootstrap +++ b/kernel_list.bootstrap @@ -1,4 +1 @@ -linux-neptune -linux-neptune-headers -core-main/linux-lts -core-main/linux-lts-headers \ No newline at end of file +linux-neptune linux-neptune-headers core-main/linux-lts core-main/linux-lts-headers \ No newline at end of file