Re: svn commit: r332561 - head/stand/efi/boot1

2018-04-16 Thread Ed Maste
On 16 April 2018 at 09:18, Kyle Evans  wrote:
> 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

The desire to remove boot1.efifat notwithstanding, you'll also need to
regenerate and commit the FAT templates for this change to take
effect.
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


Re: svn commit: r332561 - head/stand/efi/boot1

2018-04-16 Thread Warner Losh
On Mon, Apr 16, 2018 at 7:18 AM, Kyle Evans  wrote:

> 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.
>

rm -rf boot1.efifat

after svn rm is the right answer here.

Warner
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r332561 - head/stand/efi/boot1

2018-04-16 Thread Kyle Evans
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.shMon Apr 16 12:46:14 2018
(r332560)
+++ head/stand/efi/boot1/generate-fat.shMon 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
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"