From: Tom Zanussi Date: Wed, 12 Mar 2014 19:31:02 +0000 (+0000) Subject: wic: Use pseudo for ext mkfs command X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~34187 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=032309928f931b32cf63a0ebf174de029ba17401;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Richard Purdie --- diff --git a/scripts/lib/mic/kickstart/custom_commands/partition.py b/scripts/lib/mic/kickstart/custom_commands/partition.py index e0a82f58f65..e15150b6578 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)