From: Darren Hart <darren.hart@intel.com>
To: Richard Purdie <richard.purdie@linuxfoundation.org>,
Yocto Project <yocto@yoctoproject.org>,
raj.khem@gmail.com, koen@dominion.thruhere.net,
kergoth@gmail.com, elizabeth.flanagan@intel.com,
martin.jansa@gmail.com,
Bruce Ashfield <bruce.ashfield@windriver.com>,
Tom Zanussi <tom.zanussi@intel.com>
Subject: Re: [PATCH 6/9] distro: Add POKY_DEFAULT_EXTRA_R* variables
Date: Wed, 21 Dec 2011 11:21:37 -0800 [thread overview]
Message-ID: <4EF231C1.7060209@intel.com> (raw)
In-Reply-To: <7efa92333bfb6fb2eb58f1403b9e61ebd7455522.1324493490.git.dvhart@linux.intel.com>
On 12/21/2011 10:58 AM, Darren Hart wrote:
> Allow the reuse of poky.conf by distro definitions wanting to remove
> content by introducting POKY_DEFAULT_EXTRA_R*. These are appended
> to the corresponding DISTRO_EXTRA_R* variables and can be overriden
> by distro configs that "require poky.conf".
>
> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
> ---
> meta-yocto/conf/distro/poky.conf | 8 ++++++--
> 1 files changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/meta-yocto/conf/distro/poky.conf b/meta-yocto/conf/distro/poky.conf
> index 80d4e47..43945be 100644
> --- a/meta-yocto/conf/distro/poky.conf
> +++ b/meta-yocto/conf/distro/poky.conf
> @@ -24,8 +24,12 @@ SDKPATH = "/opt/${DISTRO}/${SDK_VERSION}"
>
> EXTRAOPKGCONFIG = "poky-feed-config-opkg"
>
> -DISTRO_EXTRA_RDEPENDS += "task-core-boot"
> -DISTRO_EXTRA_RRECOMMENDS += "kernel-module-af-packet"
> +# Override these in poky based distros to modify DISTRO_EXTRA_R*
> +POKY_DEFAULT_EXTRA_RDEPENDS = "task-core-boot"
> +POKY_DEFAULT_EXTRA_RRECOMMENDS = "kernel-module-af-packet"
> +
> +DISTRO_EXTRA_RDEPENDS += ${POKY_DEFAULT_EXTRA_RDEPENDS}
> +DISTRO_EXTRA_RRECOMMENDS += ${POKY_DEFAULT_EXTRA_RRECOMMENDS}
Doh, -ENOQUOTING. Fixed in the dvhart/tiny-v2 contrib branch.
>
> POKYQEMUDEPS = "${@base_contains("INCOMPATIBLE_LICENSE", "GPLv3", "", "qemu-config",d)}"
> DISTRO_EXTRA_RDEPENDS_append_qemuarm = " ${POKYQEMUDEPS}"
--
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
next prev parent reply other threads:[~2011-12-21 19:21 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-21 18:58 [RFC PATCH V2 0/9] New distribution definition for poky-tiny Darren Hart
2011-12-21 18:58 ` [PATCH 1/9] native.bbclass: Fix variable remapping coverage Darren Hart
2011-12-21 19:26 ` Chris Larson
2011-12-21 19:52 ` Darren Hart
2011-12-21 18:58 ` [PATCH 2/9] ncurses: Allow override of ENABLE_WIDEC Darren Hart
2011-12-21 18:58 ` [PATCH 3/9] eglibc: Only add eglibc-utils to PACKAGES if wchar is supported Darren Hart
2011-12-21 18:58 ` [PATCH 4/9] linux-yocto-tiny: New kernel recipe for poky-tiny distro (INCOMPLETE) Darren Hart
2011-12-21 19:23 ` Bruce Ashfield
2011-12-21 19:41 ` Darren Hart
2011-12-21 18:58 ` [PATCH 5/9] task-core-boot: Allow DISTRO to disable keymaps via VIRTUAL-RUNTIME_keymaps Darren Hart
2011-12-21 18:58 ` [PATCH 6/9] distro: Add POKY_DEFAULT_EXTRA_R* variables Darren Hart
2011-12-21 19:21 ` Darren Hart [this message]
2011-12-21 18:58 ` [PATCH 7/9] distro: Add poky-tiny distro definition Darren Hart
2011-12-21 18:58 ` [PATCH 8/9] license: Fix manifest conditional Darren Hart
2011-12-21 18:58 ` [PATCH 9/9] image_types: Ensure /init exists for cpio rootfs archives Darren Hart
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4EF231C1.7060209@intel.com \
--to=darren.hart@intel.com \
--cc=bruce.ashfield@windriver.com \
--cc=elizabeth.flanagan@intel.com \
--cc=kergoth@gmail.com \
--cc=koen@dominion.thruhere.net \
--cc=martin.jansa@gmail.com \
--cc=raj.khem@gmail.com \
--cc=richard.purdie@linuxfoundation.org \
--cc=tom.zanussi@intel.com \
--cc=yocto@yoctoproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.