aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/image.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r--meta/classes/image.bbclass23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 4542e95d1e..c56b053f18 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -238,9 +238,32 @@ do_rootfs[cleandirs] += "${S}"
do_rootfs[umask] = "022"
addtask rootfs before do_build
+inherit kernel-check
+
+def check_image_fstypes_kernel(d):
+ """
+ Check that the kernel we have built has the appropriate config options enabled
+ to support the image formats specified in IMAGE_FSTYPES
+ """
+ fstypes = (d.getVar('IMAGE_FSTYPES', True) or '').split()
+ ctypes = (d.getVar('COMPRESSIONTYPES', True) or '').split()
+ for fstype in fstypes:
+ kernconfig = (d.getVar('IMAGE_TYPE_KERNEL_OPTIONS_' + fstype, True) or '').split()
+ for ctype in ctypes:
+ if fstype.endswith("." + ctype):
+ basetype = fstype[:-len("." + ctype)]
+ kernconfig.extend((d.getVar('IMAGE_TYPE_KERNEL_OPTIONS_' + basetype, True) or '').split())
+ kernconfig = list(set(kernconfig))
+ if kernconfig:
+ missing, diffvalue = check_kernel_config_options(kernconfig, d)
+ if missing or diffvalue:
+ bb.warn('IMAGE_FSTYPES contains %s, but the following required kernel configuration items are not present in the kernel configuration:\n %s' % (fstype, '\n '.join(missing + ['%s=%s (actual value %s)' % item for item in diffvalue])))
+
fakeroot python do_image () {
from oe.utils import execute_pre_post_process
+ check_image_fstypes_kernel(d)
+
pre_process_cmds = d.getVar("IMAGE_PREPROCESS_COMMAND", True)
execute_pre_post_process(d, pre_process_cmds)