* [PATCH 0/2] yocto-bsp: update a couple ppc/mips config settings
@ 2012-09-27 22:12 tom.zanussi
2012-09-27 22:12 ` [PATCH 1/2] yocto-bsp: make vfat feature inclusion conditional on kernel version tom.zanussi
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: tom.zanussi @ 2012-09-27 22:12 UTC (permalink / raw)
To: poky
From: Tom Zanussi <tom.zanussi@intel.com>
This patchset fixes YOCTO #3178 [building a power pc image with a
layer created using yocto-bsp fails due to cfg/vfat not available] and
a similar problem with the dmaengine feature.
Build-tested both 3.2 and 3.4 kernels using yocto-bsp-generated
powerpc BSPs.
The following changes since commit f40bfd2e5f91a3c699833f19cec435a9b897f4b5:
bitbake: hob/builder: When you stop a build, Hob should tell you stopping is happening (2012-09-27 16:45:28 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib.git tzanussi/yocto-bsp-ppc-fix
http://git.yoctoproject.org/cgit.cgi//log/?h=tzanussi/yocto-bsp-ppc-fix
Tom Zanussi (2):
yocto-bsp: make vfat feature inclusion conditional on kernel version
yocto-bsp: fix dmaengine feature inclusion
.../target/arch/mips/recipes-kernel/linux/files/{{=machine}}.scc | 4 +++-
.../target/arch/powerpc/recipes-kernel/linux/files/{{=machine}}.scc | 6 +++++-
2 files changed, 8 insertions(+), 2 deletions(-)
--
1.7.11.4
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] yocto-bsp: make vfat feature inclusion conditional on kernel version
2012-09-27 22:12 [PATCH 0/2] yocto-bsp: update a couple ppc/mips config settings tom.zanussi
@ 2012-09-27 22:12 ` tom.zanussi
2012-09-27 22:12 ` [PATCH 2/2] yocto-bsp: fix dmaengine feature inclusion tom.zanussi
2012-09-28 10:21 ` [PATCH 0/2] yocto-bsp: update a couple ppc/mips config settings Richard Purdie
2 siblings, 0 replies; 4+ messages in thread
From: tom.zanussi @ 2012-09-27 22:12 UTC (permalink / raw)
To: poky
From: Tom Zanussi <tom.zanussi@intel.com>
The linux-yocto-3.2 cfg/vfat feature changed location to cfg/fs/vfat
in the 3.4 yocto kernel's meta branch. Add template code to include
the appropriate version depending on kernel version.
Fixes [YOCTO #3178].
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
---
.../target/arch/mips/recipes-kernel/linux/files/{{=machine}}.scc | 4 +++-
.../target/arch/powerpc/recipes-kernel/linux/files/{{=machine}}.scc | 4 ++++
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/files/{{=machine}}.scc b/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/files/{{=machine}}.scc
index 7d29541..e3daafb 100644
--- a/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/files/{{=machine}}.scc
+++ b/scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/files/{{=machine}}.scc
@@ -1,8 +1,10 @@
kconf hardware {{=machine}}.cfg
include cfg/usb-mass-storage.scc
+{{ if kernel_choice == "linux-yocto_3.2": }}
include cfg/vfat.scc
+{{ if kernel_choice == "linux-yocto_3.4": }}
+include cfg/fs/vfat.scc
kconf hardware user-config.cfg
include user-patches.scc
-
diff --git a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/{{=machine}}.scc b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/{{=machine}}.scc
index 8a04ddd..ec46ec1 100644
--- a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/{{=machine}}.scc
+++ b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/{{=machine}}.scc
@@ -1,7 +1,11 @@
kconf hardware {{=machine}}.cfg
include cfg/usb-mass-storage.scc
+{{ if kernel_choice == "linux-yocto_3.2": }}
include cfg/vfat.scc
+{{ if kernel_choice == "linux-yocto_3.4": }}
+include cfg/fs/vfat.scc
+
include cfg/dmaengine/dmaengine.scc
kconf hardware user-config.cfg
--
1.7.11.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] yocto-bsp: fix dmaengine feature inclusion
2012-09-27 22:12 [PATCH 0/2] yocto-bsp: update a couple ppc/mips config settings tom.zanussi
2012-09-27 22:12 ` [PATCH 1/2] yocto-bsp: make vfat feature inclusion conditional on kernel version tom.zanussi
@ 2012-09-27 22:12 ` tom.zanussi
2012-09-28 10:21 ` [PATCH 0/2] yocto-bsp: update a couple ppc/mips config settings Richard Purdie
2 siblings, 0 replies; 4+ messages in thread
From: tom.zanussi @ 2012-09-27 22:12 UTC (permalink / raw)
To: poky
From: Tom Zanussi <tom.zanussi@intel.com>
The cfg/dmaengine/dmaengine feature changed location to cfg/dmaengine
in the 3.4 yocto kernel's meta branch. Add template code to include
the appropriate version.
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
---
.../target/arch/powerpc/recipes-kernel/linux/files/{{=machine}}.scc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/{{=machine}}.scc b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/{{=machine}}.scc
index ec46ec1..1585fa4 100644
--- a/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/{{=machine}}.scc
+++ b/scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/files/{{=machine}}.scc
@@ -6,7 +6,7 @@ include cfg/vfat.scc
{{ if kernel_choice == "linux-yocto_3.4": }}
include cfg/fs/vfat.scc
-include cfg/dmaengine/dmaengine.scc
+include cfg/dmaengine.scc
kconf hardware user-config.cfg
include user-patches.scc
--
1.7.11.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] yocto-bsp: update a couple ppc/mips config settings
2012-09-27 22:12 [PATCH 0/2] yocto-bsp: update a couple ppc/mips config settings tom.zanussi
2012-09-27 22:12 ` [PATCH 1/2] yocto-bsp: make vfat feature inclusion conditional on kernel version tom.zanussi
2012-09-27 22:12 ` [PATCH 2/2] yocto-bsp: fix dmaengine feature inclusion tom.zanussi
@ 2012-09-28 10:21 ` Richard Purdie
2 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2012-09-28 10:21 UTC (permalink / raw)
To: tom.zanussi; +Cc: poky
On Thu, 2012-09-27 at 17:12 -0500, tom.zanussi@intel.com wrote:
> From: Tom Zanussi <tom.zanussi@intel.com>
>
> This patchset fixes YOCTO #3178 [building a power pc image with a
> layer created using yocto-bsp fails due to cfg/vfat not available] and
> a similar problem with the dmaengine feature.
>
> Build-tested both 3.2 and 3.4 kernels using yocto-bsp-generated
> powerpc BSPs.
>
> The following changes since commit f40bfd2e5f91a3c699833f19cec435a9b897f4b5:
>
> bitbake: hob/builder: When you stop a build, Hob should tell you stopping is happening (2012-09-27 16:45:28 +0100)
>
> are available in the git repository at:
>
> git://git.yoctoproject.org/poky-contrib.git tzanussi/yocto-bsp-ppc-fix
> http://git.yoctoproject.org/cgit.cgi//log/?h=tzanussi/yocto-bsp-ppc-fix
>
> Tom Zanussi (2):
> yocto-bsp: make vfat feature inclusion conditional on kernel version
> yocto-bsp: fix dmaengine feature inclusion
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-09-28 10:21 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-27 22:12 [PATCH 0/2] yocto-bsp: update a couple ppc/mips config settings tom.zanussi
2012-09-27 22:12 ` [PATCH 1/2] yocto-bsp: make vfat feature inclusion conditional on kernel version tom.zanussi
2012-09-27 22:12 ` [PATCH 2/2] yocto-bsp: fix dmaengine feature inclusion tom.zanussi
2012-09-28 10:21 ` [PATCH 0/2] yocto-bsp: update a couple ppc/mips config settings 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.