Author: kevans
Date: Mon Apr 16 13:18:18 2018
New Revision: 332561
URL: https://svnweb.freebsd.org/changeset/base/332561
Log:
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.
PR: 214282
MFC after: 3 days
Modified:
head/stand/efi/boot1/generate-fat.sh
Modified: head/stand/efi/boot1/generate-fat.sh
==============================================================================
--- head/stand/efi/boot1/generate-fat.sh Mon Apr 16 12:46:14 2018
(r332560)
+++ head/stand/efi/boot1/generate-fat.sh Mon Apr 16 13:18:18 2018
(r332561)
@@ -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
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"