Skip to content

Commit

Permalink
fs/install: move loader package installation after network setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Maccraft123 committed Nov 17, 2024
1 parent a8b9bf6 commit 557cb32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/install
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 557cb32

Please sign in to comment.