diff --git a/bb-u-boot-beagleboneai64/suite/bullseye/debian/changelog b/bb-u-boot-beagleboneai64/suite/bullseye/debian/changelog index dd16fcabe2690bb0c820fbc557d3354c411b0383..9f21089c1e853153062f7f50e9a7e47b091e82a8 100644 --- a/bb-u-boot-beagleboneai64/suite/bullseye/debian/changelog +++ b/bb-u-boot-beagleboneai64/suite/bullseye/debian/changelog @@ -1,6 +1,6 @@ -bb-u-boot-beagleboneai64 (2021.10.20220105.4-0~bullseye+20220105) bullseye; urgency=low +bb-u-boot-beagleboneai64 (2021.10.20220106.0-0~bullseye+20220106) bullseye; urgency=low * Rebuild for repos.rcn-ee.com - -- Robert Nelson <robertcnelson@gmail.com> Wed, 05 Jan 2022 15:33:36 -0600 + -- Robert Nelson <robertcnelson@gmail.com> Thu, 06 Jan 2022 11:58:44 -0600 diff --git a/bb-u-boot-beagleboneai64/suite/bullseye/debian/convert-to-extlinux-emmc.sh b/bb-u-boot-beagleboneai64/suite/bullseye/debian/convert-to-extlinux-emmc.sh index b5357f1ca519e30c5a2841455b8f29f984d78904..b2e5560be251387b81059106742f215f59cac4b5 100755 --- a/bb-u-boot-beagleboneai64/suite/bullseye/debian/convert-to-extlinux-emmc.sh +++ b/bb-u-boot-beagleboneai64/suite/bullseye/debian/convert-to-extlinux-emmc.sh @@ -11,5 +11,6 @@ if [ -d /boot/firmware/ ] ; then mkdir -p /boot/firmware/extlinux/ cp -v ${wdir}/emmc-extlinux.conf /boot/firmware/extlinux/extlinux.conf cp -v /boot/Image-`uname -r` /boot/firmware/Image - cp -v /boot/*.dtb /boot/firmware/ + cp -v /boot/initrd.img-`uname -r` /boot/firmware/initrd.img + cp -v /boot/dtbs/`uname -r`/ti/k3-j721e-*dtb /boot/firmware/ fi diff --git a/bb-u-boot-beagleboneai64/suite/bullseye/debian/convert-to-extlinux-microsd.sh b/bb-u-boot-beagleboneai64/suite/bullseye/debian/convert-to-extlinux-microsd.sh index 07e3fd19a6f10a2403cbec48388e9d93285a2637..f96830ca705657741230260a9842dc7d4ae2d7c5 100755 --- a/bb-u-boot-beagleboneai64/suite/bullseye/debian/convert-to-extlinux-microsd.sh +++ b/bb-u-boot-beagleboneai64/suite/bullseye/debian/convert-to-extlinux-microsd.sh @@ -11,5 +11,6 @@ if [ -d /boot/firmware/ ] ; then mkdir -p /boot/firmware/extlinux/ cp -v ${wdir}/microsd-extlinux.conf /boot/firmware/extlinux/extlinux.conf cp -v /boot/Image-`uname -r` /boot/firmware/Image - cp -v /boot/*.dtb /boot/firmware/ + cp -v /boot/initrd.img-`uname -r` /boot/firmware/initrd.img + cp -v /boot/dtbs/`uname -r`/ti/k3-j721e-*dtb /boot/firmware/ fi diff --git a/bb-u-boot-beagleboneai64/suite/bullseye/debian/emmc-extlinux.conf b/bb-u-boot-beagleboneai64/suite/bullseye/debian/emmc-extlinux.conf index f7c36bfd89b210f96c9e07340747cbd8a73fc224..5fb69c65171d7ab3fcb82ea7ca94a3314a7e796a 100644 --- a/bb-u-boot-beagleboneai64/suite/bullseye/debian/emmc-extlinux.conf +++ b/bb-u-boot-beagleboneai64/suite/bullseye/debian/emmc-extlinux.conf @@ -2,3 +2,4 @@ label Linux eMMC kernel /Image append console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=/dev/mmcblk0p2 ro rootfstype=ext4 rootwait net.ifnames=0 quiet fdtdir / + initrd /initrd.img diff --git a/bb-u-boot-beagleboneai64/suite/bullseye/debian/microsd-extlinux.conf b/bb-u-boot-beagleboneai64/suite/bullseye/debian/microsd-extlinux.conf index b182fd5f70a391c99de843c212a902b42f6120df..4d3e82f5d6d842204324d8abeebadf97b7ea3eb4 100644 --- a/bb-u-boot-beagleboneai64/suite/bullseye/debian/microsd-extlinux.conf +++ b/bb-u-boot-beagleboneai64/suite/bullseye/debian/microsd-extlinux.conf @@ -2,3 +2,4 @@ label Linux microSD kernel /Image append console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=/dev/mmcblk1p2 ro rootfstype=ext4 rootwait net.ifnames=0 quiet fdtdir / + initrd /initrd.img diff --git a/bb-u-boot-beagleboneai64/version.sh b/bb-u-boot-beagleboneai64/version.sh index 46ab8a8e1347086f95395dc56998602bb6488840..1cfe9483b0d90b45d060441926991a27bb6b3222 100644 --- a/bb-u-boot-beagleboneai64/version.sh +++ b/bb-u-boot-beagleboneai64/version.sh @@ -4,7 +4,7 @@ package_name="bb-u-boot-beagleboneai64" debian_pkg_name="${package_name}" -package_version="2021.10.20220105.4" +package_version="2021.10.20220106.0" package_source="" src_dir="" @@ -19,4 +19,4 @@ debian_patch="" clear_changelog="enable" -bullseye_version="~bullseye+20220105" +bullseye_version="~bullseye+20220106"