From fe7159aeef7d5d4e160779feb54d1e382d53c2aa Mon Sep 17 00:00:00 2001 From: Andreas Niedermair <429216+dittodhole@users.noreply.github.com> Date: Sun, 26 Apr 2026 23:25:54 +0200 Subject: [PATCH] fixing to armbian-image-release EXTENSIONS and VENDORPRETTYNAME were not contained in the file --- lib/functions/rootfs/distro-agnostic.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/functions/rootfs/distro-agnostic.sh b/lib/functions/rootfs/distro-agnostic.sh index 25ff64ea0127..09641666498e 100644 --- a/lib/functions/rootfs/distro-agnostic.sh +++ b/lib/functions/rootfs/distro-agnostic.sh @@ -557,12 +557,12 @@ function install_distribution_agnostic() { cp "${SDCARD}"/etc/armbian-release "${SDCARD}"/etc/armbian-image-release # save list of enabled extensions for this image - EXTENSIONS=${ENABLE_EXTENSIONS} >> "${SDCARD}"/etc/armbian-image-release + echo "EXTENSIONS='${ENABLE_EXTENSIONS}'" >> "${SDCARD}"/etc/armbian-image-release # store vendor pretty name to image only. We don't need to save this in BSP upgrade # files. Vendor should be only defined at build image stage. [[ -z $VENDORPRETTYNAME ]] && VENDORPRETTYNAME="${VENDOR}" - VENDORPRETTYNAME="$VENDORPRETTYNAME" >> "${SDCARD}"/etc/armbian-image-release + echo "VENDORPRETTYNAME='$VENDORPRETTYNAME'" >> "${SDCARD}"/etc/armbian-image-release # DNS fix. package resolvconf is not available everywhere if [[ -d "${SDCARD}/etc/resolvconf/resolv.conf.d" && -n "$NAMESERVER" ]]; then