From 2348899dbe24ac0251119c4cee0a425235fbcb79 Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Sun, 23 Jun 2024 10:31:51 +0200 Subject: live init - fix the broken loading of optional modules Thanks to Carmen for pointing me to the logic error. --- liveinit.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liveinit.tpl b/liveinit.tpl index c4fd29a..ffd6784 100644 --- a/liveinit.tpl +++ b/liveinit.tpl @@ -656,7 +656,7 @@ if [ "$RESCUE" = "" ]; then SUBSYSSET="$(find_mod /mnt/media/${LIVEMAIN}/${SUBSYS}/) $(find_mod ${SUPERMNT}/${LIVESLAKROOT}/${LIVEMAIN}/${SUBSYS}/)" if [ "$SUBSYS" = "optional" ]; then # We need to load any core2ram modules first: - SUBSYSSET="$(find_mod /mnt/media/${LIVEMAIN}/core2ram/) $(find_mod ${SUPERMNT}/${LIVESLAKROOT}/${LIVEMAIN}/core2ram/ ${SUBSYSSET})" + SUBSYSSET="$(find_mod /mnt/media/${LIVEMAIN}/core2ram/) $(find_mod ${SUPERMNT}/${LIVESLAKROOT}/${LIVEMAIN}/core2ram/) ${SUBSYSSET}" fi for MODULE in ${SUBSYSSET} ; do # Strip path and extension from the modulename: -- cgit v1.2.3-65-gdbad