* [PATCH 0/1] meta-yocto: FILESEXTRAPATHS_prepend := in all bbappends @ 2011-06-10 17:43 Paul Eggleton 2011-06-10 17:43 ` [PATCH 1/1] meta-yocto: use " Paul Eggleton 2011-06-15 10:50 ` [PATCH 0/1] meta-yocto: " Richard Purdie 0 siblings, 2 replies; 4+ messages in thread From: Paul Eggleton @ 2011-06-10 17:43 UTC (permalink / raw) To: poky The following changes since commit b30cb584a738915113e88b7db1028d53b2bae5f9: Revert "gcc: rebase the patch to avoid patch rejection" (2011-06-10 13:30:28 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib paule/filespath http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=paule/filespath Paul Eggleton (1): meta-yocto: use FILESEXTRAPATHS_prepend := in all bbappends .../recipes-bsp/formfactor/formfactor_0.0.bbappend | 4 +--- .../recipes-core/netbase/netbase_4.45.bbappend | 4 +--- meta-yocto/recipes-core/uclibc/uclibc_git.bbappend | 4 +--- .../xorg-xserver/xserver-xf86-config_0.1.bbappend | 4 +--- 4 files changed, 4 insertions(+), 12 deletions(-) -- 1.7.4.1 ^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/1] meta-yocto: use FILESEXTRAPATHS_prepend := in all bbappends 2011-06-10 17:43 [PATCH 0/1] meta-yocto: FILESEXTRAPATHS_prepend := in all bbappends Paul Eggleton @ 2011-06-10 17:43 ` Paul Eggleton 2011-06-10 18:20 ` Darren Hart 2011-06-15 10:50 ` [PATCH 0/1] meta-yocto: " Richard Purdie 1 sibling, 1 reply; 4+ messages in thread From: Paul Eggleton @ 2011-06-10 17:43 UTC (permalink / raw) To: poky Using FILESEXTRAPATHS is cleaner than the old FILESPATH-based method, and as meta-intel layers are using FILESEXTRAPATHS their formfactor bbappends will now work. In addition I have used FILESEXTRAPATHS_prepend which is not absolutely necessary, but provides a good working example in case it is copied by other layers that are intended to be used on top of it. Fixes [YOCTO #1156] Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> --- .../recipes-bsp/formfactor/formfactor_0.0.bbappend | 4 +--- .../recipes-core/netbase/netbase_4.45.bbappend | 4 +--- meta-yocto/recipes-core/uclibc/uclibc_git.bbappend | 4 +--- .../xorg-xserver/xserver-xf86-config_0.1.bbappend | 4 +--- 4 files changed, 4 insertions(+), 12 deletions(-) diff --git a/meta-yocto/recipes-bsp/formfactor/formfactor_0.0.bbappend b/meta-yocto/recipes-bsp/formfactor/formfactor_0.0.bbappend index 4b8d0e6..72d991c 100644 --- a/meta-yocto/recipes-bsp/formfactor/formfactor_0.0.bbappend +++ b/meta-yocto/recipes-bsp/formfactor/formfactor_0.0.bbappend @@ -1,3 +1 @@ -THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}" -FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:" - +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" diff --git a/meta-yocto/recipes-core/netbase/netbase_4.45.bbappend b/meta-yocto/recipes-core/netbase/netbase_4.45.bbappend index 4b8d0e6..72d991c 100644 --- a/meta-yocto/recipes-core/netbase/netbase_4.45.bbappend +++ b/meta-yocto/recipes-core/netbase/netbase_4.45.bbappend @@ -1,3 +1 @@ -THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}" -FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:" - +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" diff --git a/meta-yocto/recipes-core/uclibc/uclibc_git.bbappend b/meta-yocto/recipes-core/uclibc/uclibc_git.bbappend index 4b8d0e6..72d991c 100644 --- a/meta-yocto/recipes-core/uclibc/uclibc_git.bbappend +++ b/meta-yocto/recipes-core/uclibc/uclibc_git.bbappend @@ -1,3 +1 @@ -THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}" -FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:" - +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" diff --git a/meta-yocto/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend b/meta-yocto/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend index 4b8d0e6..72d991c 100644 --- a/meta-yocto/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend +++ b/meta-yocto/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend @@ -1,3 +1 @@ -THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}" -FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:" - +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" -- 1.7.4.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] meta-yocto: use FILESEXTRAPATHS_prepend := in all bbappends 2011-06-10 17:43 ` [PATCH 1/1] meta-yocto: use " Paul Eggleton @ 2011-06-10 18:20 ` Darren Hart 0 siblings, 0 replies; 4+ messages in thread From: Darren Hart @ 2011-06-10 18:20 UTC (permalink / raw) To: Paul Eggleton; +Cc: poky Thanks Paul! On 06/10/2011 10:43 AM, Paul Eggleton wrote: > Using FILESEXTRAPATHS is cleaner than the old FILESPATH-based method, and > as meta-intel layers are using FILESEXTRAPATHS their formfactor bbappends > will now work. In addition I have used FILESEXTRAPATHS_prepend which is > not absolutely necessary, but provides a good working example in case it > is copied by other layers that are intended to be used on top of it. > > Fixes [YOCTO #1156] > > Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Acked-by: Darren Hart <dvhart@linux.intel.com> > --- > .../recipes-bsp/formfactor/formfactor_0.0.bbappend | 4 +--- > .../recipes-core/netbase/netbase_4.45.bbappend | 4 +--- > meta-yocto/recipes-core/uclibc/uclibc_git.bbappend | 4 +--- > .../xorg-xserver/xserver-xf86-config_0.1.bbappend | 4 +--- > 4 files changed, 4 insertions(+), 12 deletions(-) > > diff --git a/meta-yocto/recipes-bsp/formfactor/formfactor_0.0.bbappend b/meta-yocto/recipes-bsp/formfactor/formfactor_0.0.bbappend > index 4b8d0e6..72d991c 100644 > --- a/meta-yocto/recipes-bsp/formfactor/formfactor_0.0.bbappend > +++ b/meta-yocto/recipes-bsp/formfactor/formfactor_0.0.bbappend > @@ -1,3 +1 @@ > -THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}" > -FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:" > - > +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" > diff --git a/meta-yocto/recipes-core/netbase/netbase_4.45.bbappend b/meta-yocto/recipes-core/netbase/netbase_4.45.bbappend > index 4b8d0e6..72d991c 100644 > --- a/meta-yocto/recipes-core/netbase/netbase_4.45.bbappend > +++ b/meta-yocto/recipes-core/netbase/netbase_4.45.bbappend > @@ -1,3 +1 @@ > -THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}" > -FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:" > - > +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" > diff --git a/meta-yocto/recipes-core/uclibc/uclibc_git.bbappend b/meta-yocto/recipes-core/uclibc/uclibc_git.bbappend > index 4b8d0e6..72d991c 100644 > --- a/meta-yocto/recipes-core/uclibc/uclibc_git.bbappend > +++ b/meta-yocto/recipes-core/uclibc/uclibc_git.bbappend > @@ -1,3 +1 @@ > -THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}" > -FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:" > - > +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" > diff --git a/meta-yocto/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend b/meta-yocto/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend > index 4b8d0e6..72d991c 100644 > --- a/meta-yocto/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend > +++ b/meta-yocto/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend > @@ -1,3 +1 @@ > -THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}" > -FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:" > - > +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" -- Darren Hart Intel Open Source Technology Center Yocto Project - Linux Kernel ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/1] meta-yocto: FILESEXTRAPATHS_prepend := in all bbappends 2011-06-10 17:43 [PATCH 0/1] meta-yocto: FILESEXTRAPATHS_prepend := in all bbappends Paul Eggleton 2011-06-10 17:43 ` [PATCH 1/1] meta-yocto: use " Paul Eggleton @ 2011-06-15 10:50 ` Richard Purdie 1 sibling, 0 replies; 4+ messages in thread From: Richard Purdie @ 2011-06-15 10:50 UTC (permalink / raw) To: Paul Eggleton; +Cc: poky On Fri, 2011-06-10 at 18:43 +0100, Paul Eggleton wrote: > The following changes since commit b30cb584a738915113e88b7db1028d53b2bae5f9: > > Revert "gcc: rebase the patch to avoid patch rejection" (2011-06-10 13:30:28 +0100) > > are available in the git repository at: > git://git.pokylinux.org/poky-contrib paule/filespath > http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=paule/filespath > > Paul Eggleton (1): > meta-yocto: use FILESEXTRAPATHS_prepend := in all bbappends Merged to master, thanks. Richard ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-06-15 10:50 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-06-10 17:43 [PATCH 0/1] meta-yocto: FILESEXTRAPATHS_prepend := in all bbappends Paul Eggleton 2011-06-10 17:43 ` [PATCH 1/1] meta-yocto: use " Paul Eggleton 2011-06-10 18:20 ` Darren Hart 2011-06-15 10:50 ` [PATCH 0/1] meta-yocto: " Richard Purdie
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.