diff options
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/builder.py')
-rwxr-xr-x | bitbake/lib/bb/ui/crumbs/builder.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py index 7b6c116ee4..4135d74865 100755 --- a/bitbake/lib/bb/ui/crumbs/builder.py +++ b/bitbake/lib/bb/ui/crumbs/builder.py | |||
@@ -75,7 +75,7 @@ class Configuration: | |||
75 | self.sstatedir = template.getVar("SSTATE_DIR") | 75 | self.sstatedir = template.getVar("SSTATE_DIR") |
76 | self.sstatemirror = template.getVar("SSTATE_MIRROR") | 76 | self.sstatemirror = template.getVar("SSTATE_MIRROR") |
77 | self.pmake = int(template.getVar("PARALLEL_MAKE").split()[1]) | 77 | self.pmake = int(template.getVar("PARALLEL_MAKE").split()[1]) |
78 | self.bbthread = int(template.getVar("BB_NUMBER_THREAD")) | 78 | self.bbthread = int(template.getVar("BB_NUMBER_THREADS")) |
79 | self.image_rootfs_size = int(template.getVar("IMAGE_ROOTFS_SIZE")) | 79 | self.image_rootfs_size = int(template.getVar("IMAGE_ROOTFS_SIZE")) |
80 | self.image_extra_size = int(template.getVar("IMAGE_EXTRA_SPACE")) | 80 | self.image_extra_size = int(template.getVar("IMAGE_EXTRA_SPACE")) |
81 | # image_overhead_factor is read-only. | 81 | # image_overhead_factor is read-only. |
@@ -103,7 +103,7 @@ class Configuration: | |||
103 | template.setVar("SSTATE_DIR", self.sstatedir) | 103 | template.setVar("SSTATE_DIR", self.sstatedir) |
104 | template.setVar("SSTATE_MIRROR", self.sstatemirror) | 104 | template.setVar("SSTATE_MIRROR", self.sstatemirror) |
105 | template.setVar("PARALLEL_MAKE", "-j %s" % self.pmake) | 105 | template.setVar("PARALLEL_MAKE", "-j %s" % self.pmake) |
106 | template.setVar("BB_NUMBER_THREAD", self.bbthread) | 106 | template.setVar("BB_NUMBER_THREADS", self.bbthread) |
107 | template.setVar("PACKAGE_CLASSES", " ".join(["package_" + i for i in self.curr_package_format.split()])) | 107 | template.setVar("PACKAGE_CLASSES", " ".join(["package_" + i for i in self.curr_package_format.split()])) |
108 | template.setVar("IMAGE_ROOTFS_SIZE", self.image_rootfs_size) | 108 | template.setVar("IMAGE_ROOTFS_SIZE", self.image_rootfs_size) |
109 | template.setVar("IMAGE_EXTRA_SPACE", self.image_extra_size) | 109 | template.setVar("IMAGE_EXTRA_SPACE", self.image_extra_size) |