From 75f16899e6f83e37993e3dd9598a38be478bd2df Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Tue, 22 Mar 2022 11:33:22 +0100 Subject: [PATCH] source common before bootloader --- usr/bin/archboot-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/bin/archboot-setup.sh b/usr/bin/archboot-setup.sh index 2b5a7ab29..aefb02f26 100755 --- a/usr/bin/archboot-setup.sh +++ b/usr/bin/archboot-setup.sh @@ -1,13 +1,13 @@ #!/bin/bash -# source base first, contains basic parameters +# source base and common first, contains basic parameters . /usr/lib/archboot/installer/base.sh +. /usr/lib/archboot/installer/common.sh # source all other functions . /usr/lib/archboot/installer/autoconfiguration.sh . /usr/lib/archboot/installer/autoprepare.sh . /usr/lib/archboot/installer/blockdevices.sh . /usr/lib/archboot/installer/bootloader.sh . /usr/lib/archboot/installer/btrfs.sh -. /usr/lib/archboot/installer/common.sh . /usr/lib/archboot/installer/configuration.sh . /usr/lib/archboot/installer/mountpoints.sh . /usr/lib/archboot/installer/network.sh