Groups | Search | Server Info | Login | Register


Groups > linux.debian.bugs.dist > #1289413

Bug#1133426: isenkram-cli: isenkram-autoinstall-firmware (Debian 13, isenkram-cli 0.69) stopped installing packages

From Petter Reinholdtsen <pere@hungry.com>
Newsgroups linux.debian.bugs.dist
Subject Bug#1133426: isenkram-cli: isenkram-autoinstall-firmware (Debian 13, isenkram-cli 0.69) stopped installing packages
Date 2026-04-13 17:30 +0200
Message-ID <MJroB-eRln-3@gated-at.bofh.it> (permalink)
References <MJoK6-ePA9-3@gated-at.bofh.it> <MJoK6-ePA9-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Control: tags -1 + patch

[Fink Reinhard]
>    * What led up to the situation?
>      isenkram-autoinstall-firmware (isenkram-cli 0.51) was working
>      perfect in Debian 12 isenkram-autoinstall-firmware (isenkram-cli
>      0.69) stopped working in Debian 13 with message:

Thank you for letting me know.  I had not noticed.  I had a look, and
find that the cause is the merging of / and /usr into one file system
with the associated move of files from /lib/firmware/ to
/usr/lib/firmware/.

This caused the files in /usr/share/isenkram/, generated regularly by me
before uploading to Debian, to be incomplete or missing.

I believe this fix should take care of it.

diff --git a/update-fw-list b/update-fw-list
index e6b5f3a..2d2d3cc 100755
--- a/update-fw-list
+++ b/update-fw-list
@@ -24,7 +25,7 @@ for dist in bookworm trixie sid; do
            echo "fetching $url"
             fwfile="generated/Fw-Contents-$arch-$dist-$section"
            if curl --silent --location "$url" > "$fwfile-full.gz" ; then
-               if gunzip 2>/dev/null < $fwfile-full.gz | grep ^lib/firmware > "$fwfile" ; then
+               if gunzip 2>/dev/null < $fwfile-full.gz | egrep "^(usr/)?lib/firmware" > "$fwfile" ; then
                    :
                else
                     echo "warning: unable to find any firmware for $arch in $dist section $section"

It will be included in a future version in unstable/testing fairly soon.
No idea how long it will take to get it included in stable.

-- 
Happy hacking
Petter Reinholdtsen

Back to linux.debian.bugs.dist | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Bug#1133426: isenkram-cli: isenkram-autoinstall-firmware (Debian 13, isenkram-cli 0.69) stopped installing packages Fink Reinhard <edv.app@tsn.at> - 2026-04-13 14:40 +0200
  Bug#1133426: isenkram-cli: isenkram-autoinstall-firmware (Debian 13, isenkram-cli 0.69) stopped installing packages Petter Reinholdtsen <pere@hungry.com> - 2026-04-13 17:30 +0200
    Bug#1133426: isenkram-cli: isenkram-autoinstall-firmware (Debian 13, isenkram-cli 0.69) stopped installing packages Petter Reinholdtsen <pere@hungry.com> - 2026-04-15 07:30 +0200

csiph-web