Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.debian.bugs.dist > #1289413
| Path | csiph.com!news.samoylyk.net!gothmog.csi.it!bofh.it!news.nic.it!robomod |
|---|---|
| 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 | Mon, 13 Apr 2026 17:30:01 +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> |
| X-Mailbox-Line | From debian-bugs-dist-request@lists.debian.org Mon Apr 13 15:27:11 2026 |
| Old-Return-Path | <debbugs@buxtehude.debian.org> |
| X-Spam-Flag | NO |
| X-Spam-Score | -1.652 |
| Reply-To | Petter Reinholdtsen <pere@hungry.com>, 1133426@bugs.debian.org |
| Resent-To | debian-bugs-dist@lists.debian.org |
| Resent-Cc | pere@debian.org |
| X-Debian-Pr-Message | followup 1133426 |
| X-Debian-Pr-Package | isenkram-cli |
| X-Debian-Pr-Source | isenkram |
| MIME-Version | 1.0 |
| Content-Type | text/plain |
| X-Debian-Message | from BTS |
| X-Mailing-List | <debian-bugs-dist@lists.debian.org> archive/latest/1963781 |
| List-ID | <debian-bugs-dist.lists.debian.org> |
| List-URL | <https://lists.debian.org/debian-bugs-dist/> |
| Approved | robomod@news.nic.it |
| Lines | 39 |
| Organization | linux.* mail to news gateway |
| Sender | robomod@news.nic.it |
| X-Original-Date | Mon, 13 Apr 2026 15:02:37 +0200 |
| X-Original-Message-ID | <sa64ilfggia.fsf@hjemme.reinholdtsen.name> |
| X-Original-References | <177608349826.7961.2026064976678358181.reportbug@r002pc51.app.tsn> <177608349826.7961.2026064976678358181.reportbug@r002pc51.app.tsn> |
| Xref | csiph.com linux.debian.bugs.dist:1289413 |
Show key headers only | 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 | Next — Previous in thread | Next in thread | Find similar
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