git: 15d0c8a17270 - stable/13 - release: Don't install ubldr.bin
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 05 Feb 2023 21:47:01 UTC
The branch stable/13 has been updated by cperciva:
URL: https://cgit.FreeBSD.org/src/commit/?id=15d0c8a1727036fcb319e3e230e80eb9825e2596
commit 15d0c8a1727036fcb319e3e230e80eb9825e2596
Author: Warner Losh <imp@FreeBSD.org>
AuthorDate: 2022-02-07 20:16:15 +0000
Commit: Colin Percival <cperciva@FreeBSD.org>
CommitDate: 2023-02-05 21:46:07 +0000
release: Don't install ubldr.bin
ubldr.bin was obsoleted by our uboot ports last year, so this is
completely unused in the default config (some customers still use
it, but that's not relevant to this script). Don't copy it at all
since it won't be used for re@ produced images.
Sponsored by: Netflix
Reviewed by: kevans, gjb (re@)
Differential Revision: https://reviews.freebsd.org/D34192
(cherry picked from commit 4e46c6fb35b3d5803f10c5edb5dabaf3cc308517)
---
release/tools/arm.subr | 5 -----
1 file changed, 5 deletions(-)
diff --git a/release/tools/arm.subr b/release/tools/arm.subr
index 69f56c7c6520..d07dbb41b48b 100644
--- a/release/tools/arm.subr
+++ b/release/tools/arm.subr
@@ -248,11 +248,6 @@ arm_install_boot() {
chroot ${CHROOTDIR} mount_msdosfs ${dospart} ${FATMOUNT}
chroot ${CHROOTDIR} mount ${ufspart} ${UFSMOUNT}
- if [ "${EMBEDDED_TARGET}" = "arm" ]; then
- chroot ${CHROOTDIR} cp -p ${UFSMOUNT}/boot/ubldr.bin \
- ${FATMOUNT}/ubldr.bin
- fi
-
BOOTFILES="$(chroot ${CHROOTDIR} \
env TARGET=${EMBEDDED_TARGET} TARGET_ARCH=${EMBEDDED_TARGET_ARCH} \
WITH_UNIFIED_OBJDIR=yes \