[oe-commits] Graeme Gregory : omap3-mkcard.sh : make fdisk parsing a little more robust

git version control git at git.openembedded.org
Sat Feb 13 12:43:06 UTC 2010


Module: openembedded.git
Branch: shr/unstable
Commit: 6687b01b725288ae365b776c7545324bfc3abb8e
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=6687b01b725288ae365b776c7545324bfc3abb8e

Author: Graeme Gregory <dp at xora.org.uk>
Date:   Fri Feb 12 22:53:27 2010 +0000

omap3-mkcard.sh : make fdisk parsing a little more robust

---

 contrib/angstrom/omap3-mkcard.sh |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/contrib/angstrom/omap3-mkcard.sh b/contrib/angstrom/omap3-mkcard.sh
index dc4359c..d8b5b43 100755
--- a/contrib/angstrom/omap3-mkcard.sh
+++ b/contrib/angstrom/omap3-mkcard.sh
@@ -6,7 +6,7 @@
 # Parts of the procudure base on the work of Denys Dmytriyenko
 # http://wiki.omap.com/index.php/MMC_Boot_Format
 
-LC_ALL=C
+export LC_ALL=C
 
 if [ $# -ne 1 ]; then
 	echo "Usage: $0 <drive>"
@@ -17,7 +17,7 @@ DRIVE=$1
 
 dd if=/dev/zero of=$DRIVE bs=1024 count=1024
 
-SIZE=`fdisk -l $DRIVE | grep Disk | awk '{print $5}'`
+SIZE=`fdisk -l $DRIVE | grep Disk | grep bytes | awk '{print $5}'`
 
 echo DISK SIZE - $SIZE bytes
 





More information about the Openembedded-commits mailing list