diff options
author | Saul Wold <sgw@linux.intel.com> | 2016-06-18 17:13:55 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-06 18:28:39 +0100 |
commit | 172105c1ef5469737108ca51108826f7fec8d5d7 (patch) | |
tree | 9bdc24d36861bde24bdb1ababf64cd80ad116e82 | |
parent | 0fa93e1412247285c3506f0bedb1fae3ecf49257 (diff) | |
download | poky-172105c1ef5469737108ca51108826f7fec8d5d7.tar.gz |
rootfs_rpm: Increase rootfs size
This doubles the amount of extra space that is provided for SMART and
RPM, as they consume more disk space during qa testing via testimage
[YOCTO #9800]
(From OE-Core rev: 2d636068d9d3a1ea2db3ace49462be13ba9ef125)
(From OE-Core rev: 1d35417502aa8bce9d65d15f29d9d7bee077b7cc)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/rootfs_rpm.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/rootfs_rpm.bbclass b/meta/classes/rootfs_rpm.bbclass index 0d2e897c2b..38b3c99495 100644 --- a/meta/classes/rootfs_rpm.bbclass +++ b/meta/classes/rootfs_rpm.bbclass | |||
@@ -5,8 +5,8 @@ | |||
5 | ROOTFS_PKGMANAGE = "rpm smartpm" | 5 | ROOTFS_PKGMANAGE = "rpm smartpm" |
6 | ROOTFS_PKGMANAGE_BOOTSTRAP = "run-postinsts" | 6 | ROOTFS_PKGMANAGE_BOOTSTRAP = "run-postinsts" |
7 | 7 | ||
8 | # Add 50Meg of extra space for Smart | 8 | # Add 100Meg of extra space for Smart |
9 | IMAGE_ROOTFS_EXTRA_SPACE_append = "${@bb.utils.contains("PACKAGE_INSTALL", "smartpm", " + 51200", "" ,d)}" | 9 | IMAGE_ROOTFS_EXTRA_SPACE_append = "${@bb.utils.contains("PACKAGE_INSTALL", "smartpm", " + 102400", "" ,d)}" |
10 | 10 | ||
11 | # Smart is python based, so be sure python-native is available to us. | 11 | # Smart is python based, so be sure python-native is available to us. |
12 | EXTRANATIVEPATH += "python-native" | 12 | EXTRANATIVEPATH += "python-native" |