mkefidisk.sh: Use all caps for volume names

Avoid some mkfs warnings by using all caps in the volume names.

(From OE-Core rev: d80d730a5fa84d3a036d1fc8290620e90d5db460)

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Darren Hart 2014-07-16 14:15:57 +00:00 committed by Richard Purdie
parent b163ba19de
commit 3213ab465c
1 changed files with 3 additions and 3 deletions

View File

@ -208,14 +208,14 @@ unmount_device
echo ""
echo "Formatting $BOOTFS as vfat..."
if [ ! "${DEVICE#/dev/loop}" = "${DEVICE}" ]; then
mkfs.vfat -I $BOOTFS -n "efi"
mkfs.vfat -I $BOOTFS -n "EFI"
else
mkfs.vfat $BOOTFS -n "efi"
mkfs.vfat $BOOTFS -n "EFI"
fi
echo "Formatting $ROOTFS as ext3..."
mkfs.ext3 $ROOTFS -L "root"
mkfs.ext3 -F $ROOTFS -L "ROOT"
echo "Formatting swap partition...($SWAP)"
mkswap $SWAP