We have been running into issues where we add a package and then find out that the tiny image grew too big for our requirements. Turns out there is a variable we can set to prevent this.
Signed-off-by: Ryan Eatmon <[email protected]> --- meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb b/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb index 8117ebc5..1f63ca0b 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb +++ b/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb @@ -16,6 +16,9 @@ IMAGE_FEATURES:remove = "package-management" IMAGE_FSTYPES += "cpio cpio.xz" +INITRAMFS_FSTYPES += "cpio cpio.xz" +INITRAMFS_MAXSIZE = "65536" + IMAGE_INSTALL += " \ ${ARAGO_TINY_IMAGE_EXTRA_INSTALL} \ " -- 2.17.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#14820): https://lists.yoctoproject.org/g/meta-arago/message/14820 Mute This Topic: https://lists.yoctoproject.org/mt/100547167/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/leave/10763299/21656/89520264/xyzzy [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
