From 557cb32371ef28a8ffc9530d4a610ba5928e2af4 Mon Sep 17 00:00:00 2001 From: Maya Matuszczyk Date: Sun, 17 Nov 2024 14:34:08 +0100 Subject: [PATCH] fs/install: move loader package installation after network setup --- fs/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/install b/fs/install index 5eab238..8908ac5 100755 --- a/fs/install +++ b/fs/install @@ -10,11 +10,9 @@ CADMIUMROOT="/CdFiles" # try finding out bootloader BOOTFW=unknown if cat /proc/cmdline | grep -s cros_secure >/dev/null 2>&1; then - $FS_INST_PKG $FS_PKGS_CD_BOOTFW_DEPTHCHARGE BOOTFW=depthcharge BOOTFW_PKGS="$FS_PKGS_CD_BOOTFW_DEPTHCHARGE" elif [ -d "/sys/firmware/efi" ]; then - $FS_INST_PKG $FS_PKGS_CD_BOOTFW_EFI BOOTFW=efi BOOTFW_PKGS="$FS_PKGS_CD_BOOTFW_EFI" fi @@ -100,6 +98,8 @@ nmtui connect which ntpdate >/dev/null 2>&1 && ntpdate pool.ntp.org +$FS_INST_PKG $BOOTFW_PKGS + # try finding emmc case "$BASEBOARD" in x1e80100-woa)