Version in base suite: 0.148.3 Base version: initramfs-tools_0.148.3 Target version: initramfs-tools_0.148.4 Base file: /srv/ftp-master.debian.org/ftp/pool/main/i/initramfs-tools/initramfs-tools_0.148.3.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/i/initramfs-tools/initramfs-tools_0.148.4.dsc debian/changelog | 14 ++++++++++++++ debian/salsa-ci.yml | 2 +- hook-functions | 1 + unmkinitramfs.c | 3 ++- 4 files changed, 18 insertions(+), 2 deletions(-) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmp3i4mqg4o/initramfs-tools_0.148.3.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmp3i4mqg4o/initramfs-tools_0.148.4.dsc: no acceptable signature found diff -Nru initramfs-tools-0.148.3/debian/changelog initramfs-tools-0.148.4/debian/changelog --- initramfs-tools-0.148.3/debian/changelog 2025-06-29 12:08:36.000000000 +0000 +++ initramfs-tools-0.148.4/debian/changelog 2026-05-07 08:04:09.000000000 +0000 @@ -1,3 +1,17 @@ +initramfs-tools (0.148.4) trixie; urgency=medium + + [ Aurelien Jarno ] + * [8e1a6f5] d/salsa-ci.yml: Set RELEASE to trixie + + [ E Shattow ] + * [2331eab] hook-functions: Add Cadence USB driver to base (Closes: + #1108924) + + [ Ben Hutchings ] + * [45d5661] unmkinitramfs: Accept lower-case hex digits in cpio headers + + -- Ben Hutchings Thu, 07 May 2026 10:04:09 +0200 + initramfs-tools (0.148.3) unstable; urgency=medium [ Benjamin Drung ] diff -Nru initramfs-tools-0.148.3/debian/salsa-ci.yml initramfs-tools-0.148.4/debian/salsa-ci.yml --- initramfs-tools-0.148.3/debian/salsa-ci.yml 2025-05-13 03:22:04.000000000 +0000 +++ initramfs-tools-0.148.4/debian/salsa-ci.yml 2026-05-06 20:14:37.000000000 +0000 @@ -3,7 +3,7 @@ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml variables: - RELEASE: 'unstable' + RELEASE: 'trixie' shellcheck: stage: test diff -Nru initramfs-tools-0.148.3/hook-functions initramfs-tools-0.148.4/hook-functions --- initramfs-tools-0.148.3/hook-functions 2025-06-29 11:53:10.000000000 +0000 +++ initramfs-tools-0.148.4/hook-functions 2026-05-07 08:04:04.000000000 +0000 @@ -734,6 +734,7 @@ hwa-hc.ko sl811_cs.ko sl811-hcd.ko \ u132-hcd.ko whci-hcd.ko modules="$modules =drivers/usb/c67x00" + modules="$modules =drivers/usb/cdns3" modules="$modules =drivers/usb/chipidea" modules="$modules =drivers/usb/dwc2" modules="$modules =drivers/usb/dwc3" diff -Nru initramfs-tools-0.148.3/unmkinitramfs.c initramfs-tools-0.148.4/unmkinitramfs.c --- initramfs-tools-0.148.3/unmkinitramfs.c 2025-06-29 11:53:10.000000000 +0000 +++ initramfs-tools-0.148.4/unmkinitramfs.c 2026-05-06 20:14:37.000000000 +0000 @@ -1,6 +1,7 @@ /* unmkinitramfs: Unpack an initramfs */ #include +#include #include #include #include @@ -166,7 +167,7 @@ /* Parse digits up to end of field or null */ for (; i < 8 && field[i] != 0; ++i) { - p = strchr(digits, field[i]); + p = strchr(digits, (char)toupper((unsigned char)field[i])); if (!p) return false; value = (value << 4) | (p - digits);