Your message dated Thu, 19 Nov 2020 19:24:53 +0000
with message-id <[email protected]>
and subject line Bug#968376: fixed in raspi-firmware 1.20201022-1
has caused the Debian Bug report #968376,
regarding chroot postinst failure modes
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
968376: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=968376
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: raspi-firmware
Version: 1.20200601-2
Severity: important

/etc/kernel/postinst.d/z50-raspi-firmware will fail in the following
situations:

1) findmnt fails.  It attempts to mitigate this:

ROOTPART=`findmnt -n --output=source /`
if [ -z "$ROOTPART" ]; then ROOTPART=/dev/mmcblk0p2;fi

But findmnt will exit 1 and fail -e, so this is needed:

ROOTPART=`findmnt -n --output=source / || true`
if [ -z "$ROOTPART" ]; then ROOTPART=/dev/mmcblk0p2;fi

2) dtbs don't exist for kernel being considered:

  for dtb in ${dtb_path}/bcm*.dtb; do
    [ -e "${dtb}" ] && cp "${dtb}" /boot/firmware/

[ will exit 1 in that case and fail -e, so we need to flip the test:

  for dtb in ${dtb_path}/bcm*.dtb; do
    [ -e "${dtb}" ] || continue
    cp "${dtb}" /boot/firmware/

Context: live-build pulls in all packages which have files in
/lib/firmware, so raspi-firmware is installed in the arm64/armel chroot
it's building, even though it's not necessarily targeting raspi hardware
or kernel.

Thank you!

Attachment: signature.asc
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message ---
Source: raspi-firmware
Source-Version: 1.20201022-1
Done: Gunnar Wolf <[email protected]>

We believe that the bug you reported is fixed in the latest version of
raspi-firmware, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Gunnar Wolf <[email protected]> (supplier of updated raspi-firmware package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Wed, 28 Oct 2020 23:49:05 -0600
Source: raspi-firmware
Architecture: source
Version: 1.20201022-1
Distribution: unstable
Urgency: medium
Maintainer: pkg-raspi <[email protected]>
Changed-By: Gunnar Wolf <[email protected]>
Closes: 951744 968376 971748 971882 971883
Changes:
 raspi-firmware (1.20201022-1) unstable; urgency=medium
 .
   * New upstream version 1.20201022
   * Use DPKG_MAINTSCRIPT_ARCH for getting system architecture instead of
     dpkg --print-architecture (Closes: #971748)
   * Drop deprecated declaration of elevator=deadline (Closes: #971882)
   * Allow to pass arbitrary parameters to the kernel via
     /etc/default/raspi-extra-cmdline (Closes: #971883, #951744)
   * Reliability fix when copying DTBs (Closes: #968376)
Checksums-Sha1:
 7c72e2264039fbf00173564de2b7657c456f4d7c 1616 raspi-firmware_1.20201022-1.dsc
 ae0488039df822919116b6d4a8d25a523a9c1a51 4497248 
raspi-firmware_1.20201022.orig.tar.xz
 5eb67fa23b9993fd8e1c75069ec8cd737fd63e31 25424 
raspi-firmware_1.20201022-1.debian.tar.xz
 599de2c6022f06d83b68b1e269f1e35ae4e4c323 6584 
raspi-firmware_1.20201022-1_source.buildinfo
Checksums-Sha256:
 437108ed6db9b6c3e32485ce50db92a337eda35f5a7a4200b1c3c5f2e184e517 1616 
raspi-firmware_1.20201022-1.dsc
 7081cb9b8d2dc2b0329603ae28b55094b3d1eb92e54154bd3c0e22f4823fcca5 4497248 
raspi-firmware_1.20201022.orig.tar.xz
 7801cfceb2e4f29cf85be90bbd5590512be3fb15f6a92f7affd0e4b9d96efcc2 25424 
raspi-firmware_1.20201022-1.debian.tar.xz
 9b3205af75dc751d28660ecceb9648c067b129a4f4526e627923f6ad1cde7ddf 6584 
raspi-firmware_1.20201022-1_source.buildinfo
Files:
 f360a8ea4d0c2746077fe202aa38d9d6 1616 non-free/misc optional 
raspi-firmware_1.20201022-1.dsc
 ddd78a0bfe024d350e82a71147ed096a 4497248 non-free/misc optional 
raspi-firmware_1.20201022.orig.tar.xz
 c590019d8eec445513f4db9dda8702cf 25424 non-free/misc optional 
raspi-firmware_1.20201022-1.debian.tar.xz
 5bc5ebe1b7369d29dbb01e33185fadb5 6584 non-free/misc optional 
raspi-firmware_1.20201022-1_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iHUEARYIAB0WIQRgswk9lhCOXLlxQu/i9jtDU/RZiQUCX7a/eQAKCRDi9jtDU/RZ
iegLAQDyPwZ0gX5DKk1bySXZTQKx8k67bPz84afyTFPhrA41RgD/Y0Kx+njbPLFx
O5a5vVESGh0VYso85Q1GY5eRXTCERAQ=
=ocDJ
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to