vcswatch reports that
this package seems to have new commits in its VCS but has
not yet updated debian/changelog. You should consider updating
the Debian changelog and uploading this new version into the archive.
Here are the relevant commit logs:
commit c7fc4a424f24b564fb264239bebe23a734d85764
Merge: 33075ed 49f3bba
Author: Ben Hutchings <benh@debian.org>
Date: Wed Apr 23 00:28:22 2025 +0000
Merge branch 'unmkinitramfs-c' into 'debian/latest'
unmkinitramfs: Rewrite in C to make it acceptably fast
See merge request kernel-team/initramfs-tools!168
commit 49f3bbadcebb4eb3436341ca00727a183d100a35
Author: Ben Hutchings <benh@debian.org>
Date: Tue Apr 22 02:29:40 2025 +0200
test: Add autopkgtest case for unmkinitramfs
Add a test that exercises unmkinitramfs with:
- 0-2 early cpio archives
- 0-2 main cpio archives
- All supported compressors, including none, for the last main archive
and verifies that the output is as expected.
Signed-off-by: Ben Hutchings <benh@debian.org>
commit 9e37d8b38da71e7a02c9e747fffb833266d9e6e4
Author: Ben Hutchings <benh@debian.org>
Date: Mon Apr 7 01:47:41 2025 +0200
Move unmkinitramfs to new initramfs-tools-bin package
Since unmkinitramfs is now native code, it needs to be built as part
of an arch:any package. Introduce initramfs-tools-bin and move it
there.
CI: Remove the variables that disable arch:any builds.
Signed-off-by: Ben Hutchings <benh@debian.org>
commit a797b423d21e2231b8c55287ac9c46773b8816a3
Author: Ben Hutchings <benh@debian.org>
Date: Mon Mar 31 01:49:05 2025 +0200
unmkinitramfs: Rewrite in C to make it acceptably fast
Parsing uncompressed cpio archives in this shell script requires
running multiple processes for each archive member.
This was not too bad when there were usually only a few microcode
blobs in an uncompressed archive, but now that we put compressed
kernel modules in an uncompressed archive, it became very slow indeed.
Rewrite it in C so that it's acceptably fast.
This should have no functional changes, except that it adds support
for an initramfs with no compressed part.
Fixes: 81fd41f72dd8 ("Put compressed kernel modules and firmware in an uncompressed cpio")
Signed-off-by: Ben Hutchings <benh@debian.org>