From 29a5a54f7e4549c214424cee145332b2a36e6fcc Mon Sep 17 00:00:00 2001 From: AuxXxilium Date: Fri, 6 Sep 2024 08:05:45 +0200 Subject: [PATCH] boot: remove ntp from boot Signed-off-by: AuxXxilium --- files/initrd/opt/arc/boot.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/files/initrd/opt/arc/boot.sh b/files/initrd/opt/arc/boot.sh index 29ce6884..91babede 100755 --- a/files/initrd/opt/arc/boot.sh +++ b/files/initrd/opt/arc/boot.sh @@ -19,8 +19,6 @@ ARCBRANCH="$(readConfigKey "arc.branch" "${USER_CONFIG_FILE}")" BUS=$(getBus "${LOADER_DISK}") # Check if machine has EFI [ -d /sys/firmware/efi ] && EFI=1 || EFI=0 -# NTP -ntpCheck # Print Title centralized clear @@ -318,4 +316,4 @@ elif [ "${DIRECTBOOT}" == "false" ]; then # Boot to DSM [ "${KERNELLOAD}" == "kexec" ] && kexec -e || poweroff fi -exit 0 \ No newline at end of file +exit 0