core-image*sdk: Add kernel-dev to sdk images

While sdk images already have dev-pkgs included, the kernel-dev package
is special and does not get installed. Add kernel-dev explicitly to the
*sdk image recipes.

Note: We have to be careful with "IMAGE_INSTALL +=" as it must appear
after "inherit core-image" which makes an "IMAGE_INSTALL ?=" assignment.

(From OE-Core rev: 337428316de3612a8e1efa70b3a4ba7cb6e058d2)

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
CC: Jessica Zhang <jessica.zhang@intel.com>
CC: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Darren Hart 2012-06-29 19:53:13 -07:00 committed by Richard Purdie
parent cf65e4ec8f
commit bd2d6016c0
3 changed files with 5 additions and 1 deletions

View File

@ -10,6 +10,7 @@ IMAGE_INSTALL = "\
${CORE_IMAGE_BASE_INSTALL} \
task-core-basic \
task-core-lsb \
kernel-dev \
"
inherit core-image

View File

@ -11,6 +11,6 @@ DEPENDS = "linux-yocto-rt"
IMAGE_FEATURES += "dev-pkgs tools-sdk"
EXTRA_IMAGE_FEATURES += "tools-debug tools-profile tools-testapps debug-tweaks"
IMAGE_INSTALL += "rt-tests"
IMAGE_INSTALL += "rt-tests kernel-dev"
LICENSE = "MIT"

View File

@ -11,3 +11,6 @@ EXTRA_IMAGE_FEATURES += "tools-debug tools-profile tools-testapps debug-tweaks"
LICENSE = "MIT"
inherit core-image
IMAGE_INSTALL += "kernel-dev"