[oe-commits] Tom Zanussi : wic: Use pseudo for ext mkfs command

git at git.openembedded.org git at git.openembedded.org
Thu Mar 13 22:33:43 UTC 2014


Module: openembedded-core.git
Branch: master
Commit: 032309928f931b32cf63a0ebf174de029ba17401
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=032309928f931b32cf63a0ebf174de029ba17401

Author: Tom Zanussi <tom.zanussi at linux.intel.com>
Date:   Wed Mar 12 19:31:02 2014 +0000

wic: Use pseudo for ext mkfs command

The switchover from populate-exfs.sh to mke2fs forgot to preserve
pseudo, add it back.

Signed-off-by: Tom Zanussi <tom.zanussi at linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 scripts/lib/mic/kickstart/custom_commands/partition.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/lib/mic/kickstart/custom_commands/partition.py b/scripts/lib/mic/kickstart/custom_commands/partition.py
index e0a82f5..e15150b 100644
--- a/scripts/lib/mic/kickstart/custom_commands/partition.py
+++ b/scripts/lib/mic/kickstart/custom_commands/partition.py
@@ -200,7 +200,7 @@ class Wic_PartData(Mic_PartData):
 
         mkfs_cmd = "mkfs.%s -F %s %s -d %s" % \
             (self.fstype, extra_imagecmd, rootfs, image_rootfs)
-        rc, out = exec_native_cmd(mkfs_cmd, native_sysroot)
+        rc, out = exec_native_cmd(pseudo + mkfs_cmd, native_sysroot)
 
 
         # get the rootfs size in the right units for kickstart (Mb)



More information about the Openembedded-commits mailing list