Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Apr 2018 13:18:19 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r332561 - head/stand/efi/boot1
Message-ID:  <201804161318.w3GDIJl9002357@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804161318.w3GDIJl9002357>