svn commit: r332746 - stable/11/stand/efi/boot1
Kyle Evans
kevans at FreeBSD.org
Thu Apr 19 01:10:54 UTC 2018
Author: kevans
Date: Thu Apr 19 01:10:53 2018
New Revision: 332746
URL: https://svnweb.freebsd.org/changeset/base/332746
Log:
MFC r332561,r332573: Rename volume label for ESP
MFC r332561: Rename volume label for ESP
Harry Schmalzbauer reports that some firmware, in his experience, trips
over the ESP we install due to the volume label. It has been theorized that
this is due to some confusion with the label and the path on the ESP to
boot1.efi.
Regardless, Harry found that renaming the label seems to fix it.
MFC r332573: Regenerate FAT templates after r332561
PR: 214282
Modified:
stable/11/stand/efi/boot1/fat-amd64.tmpl.xz
stable/11/stand/efi/boot1/fat-arm.tmpl.xz
stable/11/stand/efi/boot1/fat-arm64.tmpl.xz
stable/11/stand/efi/boot1/fat-i386.tmpl.xz
stable/11/stand/efi/boot1/generate-fat.sh
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/stand/efi/boot1/fat-amd64.tmpl.xz
==============================================================================
Binary file (source and/or target). No diff available.
Modified: stable/11/stand/efi/boot1/fat-arm.tmpl.xz
==============================================================================
Binary file (source and/or target). No diff available.
Modified: stable/11/stand/efi/boot1/fat-arm64.tmpl.xz
==============================================================================
Binary file (source and/or target). No diff available.
Modified: stable/11/stand/efi/boot1/fat-i386.tmpl.xz
==============================================================================
Binary file (source and/or target). No diff available.
Modified: stable/11/stand/efi/boot1/generate-fat.sh
==============================================================================
--- stable/11/stand/efi/boot1/generate-fat.sh Thu Apr 19 00:50:51 2018 (r332745)
+++ stable/11/stand/efi/boot1/generate-fat.sh Thu Apr 19 01:10:53 2018 (r332746)
@@ -42,7 +42,7 @@ while read ARCH FILENAME; do
dd if=/dev/zero of=$OUTPUT_FILE bs=512 count=$FAT_SIZE
DEVICE=`mdconfig -a -f $OUTPUT_FILE`
- newfs_msdos -F 12 -L EFI $DEVICE
+ newfs_msdos -F 12 -L EFISYS $DEVICE
mkdir stub
mount -t msdosfs /dev/$DEVICE stub
More information about the svn-src-stable
mailing list