From 754bc3dcd3c42c0342978eb9fb5143b6fce2b33c Mon Sep 17 00:00:00 2001 From: Chattrapat Sangmanee Date: Sat, 8 Feb 2025 04:31:56 +0700 Subject: [PATCH] bsdinstall: fix ps3 regression b6644f5 introduces FREEBSD_BOOTLABEL="FreeBSD" as default value but cc42ef5 removed this line, expecting it to be set by update_uefi_bootentry() But ps3 don't use this function so its broken completely. So we add this line back. Signed-off-by: Chattrapat Sangmanee Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/1594 --- usr.sbin/bsdinstall/scripts/bootconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/usr.sbin/bsdinstall/scripts/bootconfig b/usr.sbin/bsdinstall/scripts/bootconfig index 618a1966095..9b330801e40 100755 --- a/usr.sbin/bsdinstall/scripts/bootconfig +++ b/usr.sbin/bsdinstall/scripts/bootconfig @@ -29,6 +29,9 @@ BSDCFG_SHARE="/usr/share/bsdconfig" . $BSDCFG_SHARE/common.subr || exit 1 + +FREEBSD_BOOTLABEL=$OSNAME + f_dprintf "%s: loading_includes..." "$0" f_include $BSDCFG_SHARE/dialog.subr