aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Schweikhardt <schweikh@FreeBSD.org>2022-09-14 11:42:43 +0000
committerJens Schweikhardt <schweikh@FreeBSD.org>2022-09-14 11:42:43 +0000
commitb94e1926600785977c3eac2c2b82655420bc354d (patch)
tree53e5627407093fbffa6c87b6270477fec32f8767
parente3d5f18e56120e60390dda5c559338ef2660c41c (diff)
downloadsrc-b94e1926600785977c3eac2c2b82655420bc354d.tar.gz
src-b94e1926600785977c3eac2c2b82655420bc354d.zip
Capitalize title like in all other titles.
-rwxr-xr-xusr.sbin/bsdinstall/scripts/bootconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bsdinstall/scripts/bootconfig b/usr.sbin/bsdinstall/scripts/bootconfig
index cb641beaa89e..2b81d31cfa88 100755
--- a/usr.sbin/bsdinstall/scripts/bootconfig
+++ b/usr.sbin/bsdinstall/scripts/bootconfig
@@ -71,7 +71,7 @@ update_uefi_bootentry()
return
fi
- $DIALOG --backtitle "$OSNAME Installer" --title 'Boot configuration' \
+ $DIALOG --backtitle "$OSNAME Installer" --title 'Boot Configuration' \
--yesno "There are multiple \"$OSNAME\" EFI boot entries. Would you like to remove them all and add a new one?" 0 0
if [ $? -eq $DIALOG_OK ]; then
for entry in $(efibootmgr | awk "\$NF == \"$EFI_LABEL_NAME\" { sub(/.*Boot/,\"\", \$1); sub(/\*/,\"\", \$1); print \$1 }"); do
@@ -86,7 +86,7 @@ update_uefi_bootentry()
efibootmgr --create --activate --label "$FREEBSD_BOOTLABEL" --loader "${mntpt}/${FREEBSD_BOOTNAME}" > /dev/null
}
-f_dialog_title "Boot configuration"
+f_dialog_title "Boot Configuration"
f_dialog_backtitle "$OSNAME Installer"
if [ `uname -m` == powerpc ]; then