From 1994352e01003ccb6ac30e7d8d68449e48102ba2 Mon Sep 17 00:00:00 2001 From: Dan McGregor Date: Tue, 27 Jan 2015 11:21:12 -0600 Subject: [PATCH] image.bbclass: make kernel depmod data optional This allows an image to skip the creation of kernel depmod data. It is useful for creating an image that will run as a container image inside a host with no knowledge of the parent's kernel. Signed-off-by: Dan McGregor --- meta/classes/image.bbclass | 1 + meta/lib/oe/rootfs.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 1c0fda7d60e..06353aa18a8 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -63,6 +63,7 @@ PACKAGE_INSTALL_ATTEMPTONLY ?= "${FEATURE_INSTALL_OPTIONAL}" EXCLUDE_FROM_WORLD = "1" USE_DEVFS ?= "1" +USE_DEPMOD ?= "1" PID = "${@os.getpid()}" diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index c4735f2755c..5a43337a42b 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py @@ -124,7 +124,8 @@ class Rootfs(object): self._run_ldconfig() - self._generate_kernel_module_deps() + if self.d.getVar('USE_DEPMOD', True) != "0": + self._generate_kernel_module_deps() self._cleanup() -- 2.47.2