From: André Draszik Date: Mon, 5 Sep 2016 08:34:42 +0000 (+0100) Subject: image.bbclass: do not check size of the debugfs image X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd50dec2f490985eb9243523aeb741543eea0ecf;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git image.bbclass: do not check size of the debugfs image The debugfs is supposed to be used in addition to the normal image for debugging purposes, it doesn't make sense to artificially limit its maximum size. (From OE-Core rev: 7cdf3b2444df8cd322d9eff1bdbdc5adddcaf22a) Signed-off-by: André Draszik Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 8273401e505..48e54a7c01f 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -537,6 +537,12 @@ def get_rootfs_size(d): base_size += rootfs_alignment - 1 base_size -= base_size % rootfs_alignment + # Do not check image size of the debugfs image. This is not supposed + # to be deployed, etc. so it doesn't make sense to limit the size + # of the debug. + if (d.getVar('IMAGE_BUILDING_DEBUGFS', True) or "") == "true": + return base_size + # Check the rootfs size against IMAGE_ROOTFS_MAXSIZE (if set) if rootfs_maxsize: rootfs_maxsize_int = int(rootfs_maxsize)