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:51:25 +0000 |
commit | 1fbab279edd0057193900646cf9f66323698e774 (patch) | |
tree | 2823f7ad78553b1dc3d3e26c826a6a951dfbe811 /scripts | |
parent | e5dbec7e7d3bb29676280823b0337ad429c75120 (diff) | |
download | openembedded-core-1fbab279edd0057193900646cf9f66323698e774.tar.gz openembedded-core-1fbab279edd0057193900646cf9f66323698e774.tar.bz2 openembedded-core-1fbab279edd0057193900646cf9f66323698e774.zip |
mkefidisk: Cleanup comment length
Keep comments under 80 characters in length.
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-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 echo "Creating boot partition on $BOOTFS" parted $DEVICE mkpart primary 0% $BOOT_SIZE -# GPT doesn't have a real boot flag, parted will change the GUID to EFI System Partition, -# which is what we want +# GPT doesn't have a real boot flag, parted will change the GUID to EFI System +# Partition, which is what we want echo "Enabling boot flag on $BOOTFS" parted $DEVICE set 1 boot on |