diff options
author | Ross Burton <ross@openedhand.com> | 2008-05-14 12:57:11 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2008-05-14 12:57:11 +0000 |
commit | 217b864ca32204f34f0d74487604016b168a22a3 (patch) | |
tree | c38ef8fc8c3f711a01f48b971b14047b6c8850a3 /scripts/poky-addptable2image | |
parent | 71cb5a569d82ec2e3451d408df95175b269ec4a8 (diff) | |
download | openembedded-core-217b864ca32204f34f0d74487604016b168a22a3.tar.gz openembedded-core-217b864ca32204f34f0d74487604016b168a22a3.tar.bz2 openembedded-core-217b864ca32204f34f0d74487604016b168a22a3.zip |
Use /sbin/fdisk because not all systems has /sbin in PATH
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4470 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts/poky-addptable2image')
-rwxr-xr-x | scripts/poky-addptable2image | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/poky-addptable2image b/scripts/poky-addptable2image index b6ad285325..f0195ad8a3 100755 --- a/scripts/poky-addptable2image +++ b/scripts/poky-addptable2image @@ -47,5 +47,5 @@ echo "1" >> /tmp/fdisk.cmds echo "$size2" >> /tmp/fdisk.cmds echo "w" >> /tmp/fdisk.cmds -fdisk $IMAGEOUT < /tmp/fdisk.cmds +/sbin/fdisk $IMAGEOUT < /tmp/fdisk.cmds cat $IMAGE >> $IMAGEOUT |