Date: Thu, 19 Apr 2018 01:10:54 +0000 (UTC) From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r332746 - stable/11/stand/efi/boot1 Message-ID: <201804190110.w3J1AsHw027698@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804190110.w3J1AsHw027698>