diff options
author | kevans <kevans@FreeBSD.org> | 2018-04-19 01:10:53 +0000 |
---|---|---|
committer | kevans <kevans@FreeBSD.org> | 2018-04-19 01:10:53 +0000 |
commit | d2fb0dc837953333ddde50d1f00fb107877ef589 (patch) | |
tree | a220c625a1fbae7d99ff38253054d0c3162cb8d9 | |
parent | 9c729368074a9cf26e68fe351521b9e4fc34272d (diff) | |
download | FreeBSD-src-d2fb0dc837953333ddde50d1f00fb107877ef589.zip FreeBSD-src-d2fb0dc837953333ddde50d1f00fb107877ef589.tar.gz |
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
-rw-r--r-- | stand/efi/boot1/fat-amd64.tmpl.xz | bin | 1712 -> 1716 bytes | |||
-rw-r--r-- | stand/efi/boot1/fat-arm.tmpl.xz | bin | 1708 -> 1708 bytes | |||
-rw-r--r-- | stand/efi/boot1/fat-arm64.tmpl.xz | bin | 1720 -> 1720 bytes | |||
-rw-r--r-- | stand/efi/boot1/fat-i386.tmpl.xz | bin | 1720 -> 1724 bytes | |||
-rwxr-xr-x | stand/efi/boot1/generate-fat.sh | 2 |
5 files changed, 1 insertions, 1 deletions
diff --git a/stand/efi/boot1/fat-amd64.tmpl.xz b/stand/efi/boot1/fat-amd64.tmpl.xz Binary files differindex fb5f94e..fe68cd8 100644 --- a/stand/efi/boot1/fat-amd64.tmpl.xz +++ b/stand/efi/boot1/fat-amd64.tmpl.xz diff --git a/stand/efi/boot1/fat-arm.tmpl.xz b/stand/efi/boot1/fat-arm.tmpl.xz Binary files differindex bb253fc..d8fea41 100644 --- a/stand/efi/boot1/fat-arm.tmpl.xz +++ b/stand/efi/boot1/fat-arm.tmpl.xz diff --git a/stand/efi/boot1/fat-arm64.tmpl.xz b/stand/efi/boot1/fat-arm64.tmpl.xz Binary files differindex 15df643..9e9fea2 100644 --- a/stand/efi/boot1/fat-arm64.tmpl.xz +++ b/stand/efi/boot1/fat-arm64.tmpl.xz diff --git a/stand/efi/boot1/fat-i386.tmpl.xz b/stand/efi/boot1/fat-i386.tmpl.xz Binary files differindex 2cde337..d576a7b 100644 --- a/stand/efi/boot1/fat-i386.tmpl.xz +++ b/stand/efi/boot1/fat-i386.tmpl.xz diff --git a/stand/efi/boot1/generate-fat.sh b/stand/efi/boot1/generate-fat.sh index f6bda6f..a4389f9 100755 --- a/stand/efi/boot1/generate-fat.sh +++ b/stand/efi/boot1/generate-fat.sh @@ -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 |