diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/lib/wic/partition.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/scripts/lib/wic/partition.py b/scripts/lib/wic/partition.py index 1347571aa0..4ec0608fe4 100644 --- a/scripts/lib/wic/partition.py +++ b/scripts/lib/wic/partition.py | |||
| @@ -198,21 +198,23 @@ class Partition(): | |||
| 198 | 198 | ||
| 199 | Currently handles ext2/3/4, btrfs, vfat and squashfs. | 199 | Currently handles ext2/3/4, btrfs, vfat and squashfs. |
| 200 | """ | 200 | """ |
| 201 | |||
| 202 | rootfs = "%s/rootfs_%s.%s.%s" % (cr_workdir, self.label, | ||
| 203 | self.lineno, self.fstype) | ||
| 204 | if os.path.isfile(rootfs): | ||
| 205 | os.remove(rootfs) | ||
| 206 | |||
| 201 | p_prefix = os.environ.get("PSEUDO_PREFIX", "%s/usr" % native_sysroot) | 207 | p_prefix = os.environ.get("PSEUDO_PREFIX", "%s/usr" % native_sysroot) |
| 202 | if (pseudo_dir): | 208 | if (pseudo_dir): |
| 203 | pseudo = "export PSEUDO_PREFIX=%s;" % p_prefix | 209 | pseudo = "export PSEUDO_PREFIX=%s;" % p_prefix |
| 204 | pseudo += "export PSEUDO_LOCALSTATEDIR=%s;" % pseudo_dir | 210 | pseudo += "export PSEUDO_LOCALSTATEDIR=%s;" % pseudo_dir |
| 205 | pseudo += "export PSEUDO_PASSWD=%s;" % rootfs_dir | 211 | pseudo += "export PSEUDO_PASSWD=%s;" % rootfs_dir |
| 206 | pseudo += "export PSEUDO_NOSYMLINKEXP=1;" | 212 | pseudo += "export PSEUDO_NOSYMLINKEXP=1;" |
| 213 | pseudo += "export PSEUDO_IGNORE_PATHS=%s;" % (rootfs + "," + (get_bitbake_var("PSEUDO_IGNORE_PATHS") or "")) | ||
| 207 | pseudo += "%s " % get_bitbake_var("FAKEROOTCMD") | 214 | pseudo += "%s " % get_bitbake_var("FAKEROOTCMD") |
| 208 | else: | 215 | else: |
| 209 | pseudo = None | 216 | pseudo = None |
| 210 | 217 | ||
| 211 | rootfs = "%s/rootfs_%s.%s.%s" % (cr_workdir, self.label, | ||
| 212 | self.lineno, self.fstype) | ||
| 213 | if os.path.isfile(rootfs): | ||
| 214 | os.remove(rootfs) | ||
| 215 | |||
| 216 | if not self.size and real_rootfs: | 218 | if not self.size and real_rootfs: |
| 217 | # The rootfs size is not set in .ks file so try to get it | 219 | # The rootfs size is not set in .ks file so try to get it |
| 218 | # from bitbake variable | 220 | # from bitbake variable |
