From 1d64ede95cd732cb8d7251b36a7d52bcb4938314 Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Thu, 8 Jan 2026 03:49:26 +0100 Subject: [PATCH] grub: remove invalid hack for `hvc0` - hvc0 (virtio console) used to be a challenge, but no longer, for a long time already --- extensions/grub.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/extensions/grub.sh b/extensions/grub.sh index 28ad270d5b..63699c80be 100644 --- a/extensions/grub.sh +++ b/extensions/grub.sh @@ -59,11 +59,6 @@ function extension_prepare_config__prepare_grub_standard() { DISTRO_KERNEL_VER="${ARCH}" # Debian's generic kernel is named like "5.19.0-2-amd64", we can't predict, use the arch DISTRO_KERNEL_PACKAGES="linux-image-${ARCH}" DISTRO_FIRMWARE_PACKAGES="firmware-linux-free" - # Debian's prebuilt kernels dont support hvc0, hack. - if [[ "${SERIALCON}" == "hvc0" ]]; then - display_alert "Debian's kernels don't support hvc0, changing to ttyS0" "${DISTRIBUTION}" "wrn" - declare -g SERIALCON="ttyS0" - fi fi if [[ "${DISTRO_GENERIC_KERNEL}" == "yes" ]]; then