Skip to content

Commit 557cb32

Browse files
committed
fs/install: move loader package installation after network setup
1 parent a8b9bf6 commit 557cb32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fs/install

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@ CADMIUMROOT="/CdFiles"
1010
# try finding out bootloader
1111
BOOTFW=unknown
1212
if cat /proc/cmdline | grep -s cros_secure >/dev/null 2>&1; then
13-
$FS_INST_PKG $FS_PKGS_CD_BOOTFW_DEPTHCHARGE
1413
BOOTFW=depthcharge
1514
BOOTFW_PKGS="$FS_PKGS_CD_BOOTFW_DEPTHCHARGE"
1615
elif [ -d "/sys/firmware/efi" ]; then
17-
$FS_INST_PKG $FS_PKGS_CD_BOOTFW_EFI
1816
BOOTFW=efi
1917
BOOTFW_PKGS="$FS_PKGS_CD_BOOTFW_EFI"
2018
fi
@@ -100,6 +98,8 @@ nmtui connect
10098

10199
which ntpdate >/dev/null 2>&1 && ntpdate pool.ntp.org
102100

101+
$FS_INST_PKG $BOOTFW_PKGS
102+
103103
# try finding emmc
104104
case "$BASEBOARD" in
105105
x1e80100-woa)

0 commit comments

Comments
 (0)