diff options
author | Dan McGregor <dan.mcgregor@usask.ca> | 2015-01-27 11:21:12 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-03 14:53:42 +0000 |
commit | ca641aedff5f6bd155796ead02cb2eb871f8c17a (patch) | |
tree | 5dd7ec704f004814267ab8e1cc353f7048fddff0 /meta/classes/image.bbclass | |
parent | 815a7b6fbf3b0cf95f5464bca687d97366d7ed6a (diff) | |
download | openembedded-core-ca641aedff5f6bd155796ead02cb2eb871f8c17a.tar.gz openembedded-core-ca641aedff5f6bd155796ead02cb2eb871f8c17a.tar.bz2 openembedded-core-ca641aedff5f6bd155796ead02cb2eb871f8c17a.zip |
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 <dan.mcgregor@usask.ca>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r-- | meta/classes/image.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index f09bfeea27..b2a3e97820 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -66,6 +66,7 @@ PACKAGE_INSTALL_ATTEMPTONLY ?= "${FEATURE_INSTALL_OPTIONAL}" EXCLUDE_FROM_WORLD = "1" USE_DEVFS ?= "1" +USE_DEPMOD ?= "1" PID = "${@os.getpid()}" |