summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDarren Hart <dvhart@linux.intel.com>2013-03-19 15:15:01 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-22 16:54:38 +0000
commitca67cd9334d9fe4fecfd5cffe24b19e03211b651 (patch)
tree6ce953be17676c5375b403f4f07870d56a7d3492 /scripts
parentc38da2675bfd0c0c4e78cf65ef48295c75f6f16e (diff)
downloadpoky-ca67cd9334d9fe4fecfd5cffe24b19e03211b651.tar.gz
mkefidisk: Cleanup comment length
Keep comments under 80 characters in length. (From OE-Core rev: 1fbab279edd0057193900646cf9f66323698e774) Signed-off-by: Darren Hart <dvhart@linux.intel.com> Cc: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/contrib/mkefidisk.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/contrib/mkefidisk.sh b/scripts/contrib/mkefidisk.sh
index 40203ee9cc..c68c2249f3 100755
--- a/scripts/contrib/mkefidisk.sh
+++ b/scripts/contrib/mkefidisk.sh
@@ -166,8 +166,8 @@ parted $DEVICE mklabel gpt
166echo "Creating boot partition on $BOOTFS" 166echo "Creating boot partition on $BOOTFS"
167parted $DEVICE mkpart primary 0% $BOOT_SIZE 167parted $DEVICE mkpart primary 0% $BOOT_SIZE
168 168
169# GPT doesn't have a real boot flag, parted will change the GUID to EFI System Partition, 169# GPT doesn't have a real boot flag, parted will change the GUID to EFI System
170# which is what we want 170# Partition, which is what we want
171echo "Enabling boot flag on $BOOTFS" 171echo "Enabling boot flag on $BOOTFS"
172parted $DEVICE set 1 boot on 172parted $DEVICE set 1 boot on
173 173