From owner-svn-src-all@freebsd.org Thu Apr 19 01:10:54 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9878BF930F6; Thu, 19 Apr 2018 01:10:54 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4AAF172A21; Thu, 19 Apr 2018 01:10:54 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3D87522900; Thu, 19 Apr 2018 01:10:54 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3J1As2U027699; Thu, 19 Apr 2018 01:10:54 GMT (envelope-from kevans@FreeBSD.org) Received: (from kevans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3J1AsHw027698; Thu, 19 Apr 2018 01:10:54 GMT (envelope-from kevans@FreeBSD.org) Message-Id: <201804190110.w3J1AsHw027698@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevans set sender to kevans@FreeBSD.org using -f From: Kyle Evans Date: Thu, 19 Apr 2018 01:10:54 +0000 (UTC) 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 X-SVN-Group: stable-11 X-SVN-Commit-Author: kevans X-SVN-Commit-Paths: stable/11/stand/efi/boot1 X-SVN-Commit-Revision: 332746 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Apr 2018 01:10:54 -0000 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