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 d9bf9bd591fdb90042e1626e8d3d3a9030161e4a
Merge: 8c65a49 adc78c6
Author: Ben Hutchings <benh@debian.org>
Date: Fri Feb 27 14:59:59 2026 +0100
Merge branch 'fix-test-arm64' into 'debian/latest'
tests fail on arm64 because they call qemu-system-arm64
See merge request kernel-team/initramfs-tools!191
commit adc78c670ae8f2549538f102be3b6a21e35184d0
Author: Hector Cao <hector.cao@canonical.com>
Date: Fri Feb 20 12:15:59 2026 +0100
tests fail on arm64 because they call qemu-system-arm64
with cpu=max the qemu fails to boot the VM with recent EDK2.
The boot failure is caused by recent EDK2 enabling of
LPA2 support and qemu is called with -cpu=max model
that advertises LPA2. While this issue has to be investigated
on EDK2/QEMU side, there is no reason for initramfs-tools
stick to cpu=max that might be unstable for these tests.
This commit switch the cpu from max to the common model
neoverse-n1 that is more stable.
LP: #2142121
commit 8c65a4965ee3529288c88565c7715692bfcd3422
Merge: af837b1 a378364
Author: Ben Hutchings <benh@debian.org>
Date: Sun Nov 16 17:28:51 2025 +0100
Merge branch 'wrap-and-sort' into 'debian/latest'
Run wrap-and-sort
See merge request kernel-team/initramfs-tools!185
commit af837b1650a44bc7e80ee4a34cc842069f54dcd1
Merge: 26e666f 7d68e10
Author: Ben Hutchings <benh@debian.org>
Date: Sun Nov 16 16:54:59 2025 +0100
Merge branch 'shellcheck' into 'debian/latest'
silence incorrect shellcheck SC2329
See merge request kernel-team/initramfs-tools!189
commit 7d68e103cc9d2ea0216eeae50caa6bdd2859ad98
Author: Benjamin Drung <benjamin.drung@canonical.com>
Date: Wed Nov 12 13:00:53 2025 +0100
Fix shellcheck SC2268
shellcheck 0.11.0 complains:
```
In debian/initramfs-tools.postinst line 6:
if [ "x$1" != xtriggered ]; then
^---^ SC2268 (style): Avoid x-prefix in comparisons as it no longer serves a purpose.
Did you mean:
if [ "$1" != triggered ]; then
```
commit 813886bbb373cffa1beee8d2ef61fe203fd1b71a
Author: Benjamin Drung <benjamin.drung@canonical.com>
Date: Wed Nov 12 12:59:08 2025 +0100
silence incorrect shellcheck SC2329
shellcheck 0.11.0 complains:
```
In hooks/fsck line 57:
fstype() { "/usr/lib/klibc/bin/fstype" "$@"; }
^-- SC2329 (info): This function is never invoked. Check usage (or ignored if invoked indirectly).
In ./mkinitramfs line 288:
clean_on_exit() {
^-- SC2329 (info): This function is never invoked. Check usage (or ignored if invoked indirectly).
In debian/tests/unmkinitramfs line 44:
no_compressor() {
^-- SC2329 (info): This function is never invoked. Check usage (or ignored if invoked indirectly).
```
commit a378364705512bfcd9dbe0367ff6e8ca97327983
Author: Benjamin Drung <benjamin.drung@canonical.com>
Date: Wed Aug 13 11:35:13 2025 +0200
Run wrap-and-sort
Run `wrap-and-sort`.