diff options
author | Darren Hart <dvhart@linux.intel.com> | 2013-03-19 15:15:01 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-22 16:54:38 +0000 |
commit | ca67cd9334d9fe4fecfd5cffe24b19e03211b651 (patch) | |
tree | 6ce953be17676c5375b403f4f07870d56a7d3492 | |
parent | c38da2675bfd0c0c4e78cf65ef48295c75f6f16e (diff) | |
download | poky-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>
-rwxr-xr-x | scripts/contrib/mkefidisk.sh | 4 |
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 | |||
166 | echo "Creating boot partition on $BOOTFS" | 166 | echo "Creating boot partition on $BOOTFS" |
167 | parted $DEVICE mkpart primary 0% $BOOT_SIZE | 167 | parted $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 |
171 | echo "Enabling boot flag on $BOOTFS" | 171 | echo "Enabling boot flag on $BOOTFS" |
172 | parted $DEVICE set 1 boot on | 172 | parted $DEVICE set 1 boot on |
173 | 173 | ||