core-image-rt-*.bb: require munges DESCRIPTION

The require of core-image-minimal overrides the description.
The best fix for this would be conditional setting of DESCRIPTION
in the required images for all image descriptions, but that opens
a potential can of worms. Moving the require fixes this.

(From OE-Core rev: 0bd5f0a86370881b4eb2455df21b0575f6ffd008)

Signed-off-by: Beth Flanagan <elizabeth.flanagan@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Beth Flanagan 2012-04-16 13:10:31 -07:00 committed by Richard Purdie
parent 15b16060c7
commit d2fca3db85
2 changed files with 2 additions and 4 deletions

View File

@ -1,14 +1,13 @@
#
# Copyright (C) 2011 Intel Corporation.
#
require recipes-core/images/core-image-minimal.bb
DESCRIPTION = "Small image capable of booting a device with a test suite and \
tools for real-time use. It includes the full meta-toolchain, development \
headers and libraries to form a standalone SDK."
DEPENDS = "linux-yocto-rt"
require recipes-core/images/core-image-minimal.bb
IMAGE_FEATURES += "dev-pkgs tools-sdk"
EXTRA_IMAGE_FEATURES += "tools-debug tools-profile tools-testapps debug-tweaks"

View File

@ -1,13 +1,12 @@
#
# Copyright (C) 2010 Intel Corporation.
#
require recipes-core/images/core-image-minimal.bb
DESCRIPTION = "A small image just capable of allowing a device to boot plus a \
real-time test suite and tools appropriate for real-time use."
DEPENDS = "linux-yocto-rt"
require recipes-core/images/core-image-minimal.bb
IMAGE_INSTALL += "rt-tests"
LICENSE = "MIT"