diff options
author | Tom Zanussi <tom.zanussi@linux.intel.com> | 2014-03-12 19:31:02 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-12 15:06:47 -0700 |
commit | f7fabf100c420a8845b4319078ff5a887ec8cff8 (patch) | |
tree | b839a982deaa0876d12ea41554867c65b78e96a6 /scripts/lib/mic | |
parent | 2b4a00a65aa347b60a6222cfa2d467d91085cbde (diff) | |
download | poky-f7fabf100c420a8845b4319078ff5a887ec8cff8.tar.gz |
wic: Use pseudo for ext mkfs command
The switchover from populate-exfs.sh to mke2fs forgot to preserve
pseudo, add it back.
(From OE-Core rev: 032309928f931b32cf63a0ebf174de029ba17401)
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/mic')
-rw-r--r-- | scripts/lib/mic/kickstart/custom_commands/partition.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/mic/kickstart/custom_commands/partition.py b/scripts/lib/mic/kickstart/custom_commands/partition.py index e0a82f58f6..e15150b657 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): | |||
200 | 200 | ||
201 | mkfs_cmd = "mkfs.%s -F %s %s -d %s" % \ | 201 | mkfs_cmd = "mkfs.%s -F %s %s -d %s" % \ |
202 | (self.fstype, extra_imagecmd, rootfs, image_rootfs) | 202 | (self.fstype, extra_imagecmd, rootfs, image_rootfs) |
203 | rc, out = exec_native_cmd(mkfs_cmd, native_sysroot) | 203 | rc, out = exec_native_cmd(pseudo + mkfs_cmd, native_sysroot) |
204 | 204 | ||
205 | 205 | ||
206 | # get the rootfs size in the right units for kickstart (Mb) | 206 | # get the rootfs size in the right units for kickstart (Mb) |