diff -Nru nezha-boot0-20220228+g0ad88bf/debian/changelog nezha-boot0-20220228+g0ad88bf/debian/changelog --- nezha-boot0-20220228+g0ad88bf/debian/changelog 2022-03-17 09:46:33.000000000 +0100 +++ nezha-boot0-20220228+g0ad88bf/debian/changelog 2022-06-20 14:28:46.000000000 +0200 @@ -1,3 +1,10 @@ +nezha-boot0 (20220228+g0ad88bf-0ubuntu2~22.04.1) jammy; urgency=medium + + * d/postinst (LP: #1979315): + + Fix model string 'NeZha' -> 'Nezha' + + -- Alexandre Ghiti Mon, 20 Jun 2022 14:28:46 +0200 + nezha-boot0 (20220228+g0ad88bf-0ubuntu1~22.04.1) jammy; urgency=medium * Update to current upstream, commit 0ad88bfdb723 diff -Nru nezha-boot0-20220228+g0ad88bf/debian/postinst nezha-boot0-20220228+g0ad88bf/debian/postinst --- nezha-boot0-20220228+g0ad88bf/debian/postinst 2021-12-14 12:33:39.000000000 +0100 +++ nezha-boot0-20220228+g0ad88bf/debian/postinst 2022-06-20 14:28:38.000000000 +0200 @@ -6,7 +6,7 @@ case "$1" in configure) - if grep -q '^Allwinner D1 NeZha$' /sys/firmware/devicetree/base/model && [ -e /dev/disk/by-partlabel/loader1 ]; then + if grep -q '^Allwinner D1 Nezha$' /sys/firmware/devicetree/base/model && [ -e /dev/disk/by-partlabel/loader1 ]; then dd if=/usr/lib/u-boot/nezha/boot0_sdcard_sun20iw1p1.bin of=/dev/disk/by-partlabel/loader1 conv=fsync fi ;;