From b2be0e5a4566864e9f4d029bd245cf56aae3ece5 Mon Sep 17 00:00:00 2001 From: Igor Date: Fri, 31 Mar 2023 13:19:03 +0200 Subject: [PATCH] Enable non-free-firmware repository for Debian Sid MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Addressing: [🐳|💥] Error context msg [ Installation of Armbian main packages for sid 3dsupport xfce no failed ] Error: Error context msg Installation of Armbian main packages for sid 3dsupport xfce no failed [🐳|🔨] Reading package lists... [🐳|🔨] Building dependency tree... [🐳|🔨] E: Unable to locate package firmware-sof-signed --- lib/functions/rootfs/distro-specific.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/functions/rootfs/distro-specific.sh b/lib/functions/rootfs/distro-specific.sh index b43e554360..c3e13b3ac4 100644 --- a/lib/functions/rootfs/distro-specific.sh +++ b/lib/functions/rootfs/distro-specific.sh @@ -147,11 +147,11 @@ function create_sources_list() { sid) # sid is permanent unstable development and has no such thing as updates or security cat <<- EOF > "${basedir}"/etc/apt/sources.list - deb http://${DEBIAN_MIRROR} $release main contrib non-free - #deb-src http://${DEBIAN_MIRROR} $release main contrib non-free + deb http://${DEBIAN_MIRROR} $release main contrib non-free non-free-firmware + #deb-src http://${DEBIAN_MIRROR} $release main contrib non-free non-free-firmware - deb http://${DEBIAN_MIRROR} unstable main contrib non-free - #deb-src http://${DEBIAN_MIRROR} unstable main contrib non-free + deb http://${DEBIAN_MIRROR} unstable main contrib non-free non-free-firmware + #deb-src http://${DEBIAN_MIRROR} unstable main contrib non-free non-free-firmware EOF ;;