All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates
@ 2012-05-01 22:13 Darren Hart
  2012-05-01 22:13 ` [PATCH 1/7] fri2: Use emgd-1.10 feature and branch Darren Hart
                   ` (7 more replies)
  0 siblings, 8 replies; 10+ messages in thread
From: Darren Hart @ 2012-05-01 22:13 UTC (permalink / raw)
  To: Yocto Project, Bruce Ashfield, Tom Zanussi

Please apply to linux-yocto-3.2 meta branch.

The following changes since commit b14a08f5c7b469a5077c10942f4e1aec171faa9d:

  meta: Clean up BSPs kernel config (2012-04-17 16:04:15 -0400)

are available in the git repository at:
  git://git.infradead.org/users/dvhart/linux-yocto-3.2.git dvhart/meta/dev
  http://git.infradead.org/users/dvhart/linux-yocto-3.2.git/shortlog/refs/heads/dvhart/meta/dev

Darren Hart (7):
  fri2: Use emgd-1.10 feature and branch
  fri2: Cleanup fri2-$KTYPE.scc files re efi-ext.scc
  sys940x: Move emgd-1.10 data to the standard scc file
  sys940x: Add efi-ext to standard and preempt-rt configs
  sys940x: Add common standard and preempt-rt features
  sys940x: Use PHYSICAL_START of 0x200000 to boot
  sys940x: Cleanup sys940x.scc

 meta/cfg/kernel-cache/bsp/fri2/fri2-preempt-rt.scc |    2 +-
 meta/cfg/kernel-cache/bsp/fri2/fri2-standard.scc   |    6 +++---
 .../bsp/sys940x/sys940x-preempt-rt.scc             |    8 ++++++++
 .../kernel-cache/bsp/sys940x/sys940x-standard.scc  |   12 ++++++++++++
 meta/cfg/kernel-cache/bsp/sys940x/sys940x.cfg      |    4 ++++
 meta/cfg/kernel-cache/bsp/sys940x/sys940x.scc      |   10 ++--------
 6 files changed, 30 insertions(+), 12 deletions(-)

-- 
1.7.7.6



^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH 1/7] fri2: Use emgd-1.10 feature and branch
  2012-05-01 22:13 [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates Darren Hart
@ 2012-05-01 22:13 ` Darren Hart
  2012-05-01 22:13 ` [PATCH 2/7] fri2: Cleanup fri2-$KTYPE.scc files re efi-ext.scc Darren Hart
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: Darren Hart @ 2012-05-01 22:13 UTC (permalink / raw)
  To: Yocto Project, Bruce Ashfield, Tom Zanussi

Update the fri2-standard.scc description to use the new emgd feature
and branch name. Without this change the emgd driver is not merged
and not built.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
---
 meta/cfg/kernel-cache/bsp/fri2/fri2-standard.scc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/cfg/kernel-cache/bsp/fri2/fri2-standard.scc b/meta/cfg/kernel-cache/bsp/fri2/fri2-standard.scc
index 66b87ce..e992db5 100644
--- a/meta/cfg/kernel-cache/bsp/fri2/fri2-standard.scc
+++ b/meta/cfg/kernel-cache/bsp/fri2/fri2-standard.scc
@@ -5,8 +5,8 @@ define KARCH i386
 include ktypes/standard
 branch fri2
 
-include features/emgd/emgd.scc
-git merge emgd
+include features/emgd/emgd-1.10.scc
+git merge emgd-1.10
 
 include fri2.scc
 
-- 
1.7.7.6



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 2/7] fri2: Cleanup fri2-$KTYPE.scc files re efi-ext.scc
  2012-05-01 22:13 [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates Darren Hart
  2012-05-01 22:13 ` [PATCH 1/7] fri2: Use emgd-1.10 feature and branch Darren Hart
@ 2012-05-01 22:13 ` Darren Hart
  2012-05-01 22:13 ` [PATCH 3/7] sys940x: Move emgd-1.10 data to the standard scc file Darren Hart
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: Darren Hart @ 2012-05-01 22:13 UTC (permalink / raw)
  To: Yocto Project, Bruce Ashfield, Tom Zanussi

The efi-ext.scc fragment is not part of the standard or preempt-rt
standard features. It is instead a BSP specific feature added to
these ktypes. Rearrange the meta-data accordingly.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
---
 meta/cfg/kernel-cache/bsp/fri2/fri2-preempt-rt.scc |    2 +-
 meta/cfg/kernel-cache/bsp/fri2/fri2-standard.scc   |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/cfg/kernel-cache/bsp/fri2/fri2-preempt-rt.scc b/meta/cfg/kernel-cache/bsp/fri2/fri2-preempt-rt.scc
index 1a9e638..2404a78 100644
--- a/meta/cfg/kernel-cache/bsp/fri2/fri2-preempt-rt.scc
+++ b/meta/cfg/kernel-cache/bsp/fri2/fri2-preempt-rt.scc
@@ -5,10 +5,10 @@ define KARCH i386
 # no new branch required, re-use the ktypes/preempt-rt branch
 include ktypes/preempt-rt
 include fri2.scc
+include cfg/efi-ext.scc
 
 # default policy for preempt-rt kernels
 include cfg/boot-live.scc
 include features/logbuf/size-normal.scc
 include features/latencytop/latencytop.scc
 include features/profiling/profiling.scc
-include cfg/efi-ext.scc
diff --git a/meta/cfg/kernel-cache/bsp/fri2/fri2-standard.scc b/meta/cfg/kernel-cache/bsp/fri2/fri2-standard.scc
index e992db5..ed92fa7 100644
--- a/meta/cfg/kernel-cache/bsp/fri2/fri2-standard.scc
+++ b/meta/cfg/kernel-cache/bsp/fri2/fri2-standard.scc
@@ -9,10 +9,10 @@ include features/emgd/emgd-1.10.scc
 git merge emgd-1.10
 
 include fri2.scc
+include cfg/efi-ext.scc
 
 # default policy for standard kernels
 include cfg/boot-live.scc
 include features/logbuf/size-normal.scc
 include features/latencytop/latencytop.scc
 include features/profiling/profiling.scc
-include cfg/efi-ext.scc
-- 
1.7.7.6



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 3/7] sys940x: Move emgd-1.10 data to the standard scc file
  2012-05-01 22:13 [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates Darren Hart
  2012-05-01 22:13 ` [PATCH 1/7] fri2: Use emgd-1.10 feature and branch Darren Hart
  2012-05-01 22:13 ` [PATCH 2/7] fri2: Cleanup fri2-$KTYPE.scc files re efi-ext.scc Darren Hart
@ 2012-05-01 22:13 ` Darren Hart
  2012-05-01 22:13 ` [PATCH 4/7] sys940x: Add efi-ext to standard and preempt-rt configs Darren Hart
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: Darren Hart @ 2012-05-01 22:13 UTC (permalink / raw)
  To: Yocto Project, Bruce Ashfield, Tom Zanussi

Make sys940x consistent with crownbay and fri2 by moving the
emgd-1.10 includes and merges to the $bsp-standard.scc files.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
---
 .../kernel-cache/bsp/sys940x/sys940x-standard.scc  |    3 +++
 meta/cfg/kernel-cache/bsp/sys940x/sys940x.scc      |    2 --
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/meta/cfg/kernel-cache/bsp/sys940x/sys940x-standard.scc b/meta/cfg/kernel-cache/bsp/sys940x/sys940x-standard.scc
index 1f0edec..132e44a 100644
--- a/meta/cfg/kernel-cache/bsp/sys940x/sys940x-standard.scc
+++ b/meta/cfg/kernel-cache/bsp/sys940x/sys940x-standard.scc
@@ -2,5 +2,8 @@ define KMACHINE sys940x
 define KTYPE standard
 define KARCH i386
 
+include features/emgd/emgd-1.10.scc
+git merge emgd-1.10
+
 include ktypes/standard
 include sys940x.scc
diff --git a/meta/cfg/kernel-cache/bsp/sys940x/sys940x.scc b/meta/cfg/kernel-cache/bsp/sys940x/sys940x.scc
index 557a83d..962b837 100644
--- a/meta/cfg/kernel-cache/bsp/sys940x/sys940x.scc
+++ b/meta/cfg/kernel-cache/bsp/sys940x/sys940x.scc
@@ -1,7 +1,5 @@
 kconf hardware sys940x.cfg
 
-git merge emgd-1.10
-
 include features/eg20t/eg20t.scc
 include features/drm-emgd/drm-emgd.scc
 include cfg/dmaengine.scc
-- 
1.7.7.6



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 4/7] sys940x: Add efi-ext to standard and preempt-rt configs
  2012-05-01 22:13 [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates Darren Hart
                   ` (2 preceding siblings ...)
  2012-05-01 22:13 ` [PATCH 3/7] sys940x: Move emgd-1.10 data to the standard scc file Darren Hart
@ 2012-05-01 22:13 ` Darren Hart
  2012-05-01 22:13 ` [PATCH 5/7] sys940x: Add common standard and preempt-rt features Darren Hart
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: Darren Hart @ 2012-05-01 22:13 UTC (permalink / raw)
  To: Yocto Project, Bruce Ashfield, Tom Zanussi

Enable efi-ext in the standard and preempt-rt configs so the recipes
do not have to do this explicitly.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
---
 .../bsp/sys940x/sys940x-preempt-rt.scc             |    3 +++
 .../kernel-cache/bsp/sys940x/sys940x-standard.scc  |    4 +++-
 2 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/meta/cfg/kernel-cache/bsp/sys940x/sys940x-preempt-rt.scc b/meta/cfg/kernel-cache/bsp/sys940x/sys940x-preempt-rt.scc
index 3b8f0aa..39fa1d4 100644
--- a/meta/cfg/kernel-cache/bsp/sys940x/sys940x-preempt-rt.scc
+++ b/meta/cfg/kernel-cache/bsp/sys940x/sys940x-preempt-rt.scc
@@ -4,4 +4,7 @@ define KARCH i386
 
 # no new branch required, re-use the ktypes/preempt-rt branch
 include ktypes/preempt-rt
+
 include sys940x.scc
+include cfg/efi-ext.scc
+
diff --git a/meta/cfg/kernel-cache/bsp/sys940x/sys940x-standard.scc b/meta/cfg/kernel-cache/bsp/sys940x/sys940x-standard.scc
index 132e44a..23f99fb 100644
--- a/meta/cfg/kernel-cache/bsp/sys940x/sys940x-standard.scc
+++ b/meta/cfg/kernel-cache/bsp/sys940x/sys940x-standard.scc
@@ -5,5 +5,7 @@ define KARCH i386
 include features/emgd/emgd-1.10.scc
 git merge emgd-1.10
 
-include ktypes/standard
 include sys940x.scc
+include cfg/efi-ext.scc
+
+include ktypes/standard
-- 
1.7.7.6



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 5/7] sys940x: Add common standard and preempt-rt features
  2012-05-01 22:13 [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates Darren Hart
                   ` (3 preceding siblings ...)
  2012-05-01 22:13 ` [PATCH 4/7] sys940x: Add efi-ext to standard and preempt-rt configs Darren Hart
@ 2012-05-01 22:13 ` Darren Hart
  2012-05-01 22:13 ` [PATCH 6/7] sys940x: Use PHYSICAL_START of 0x200000 to boot Darren Hart
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: Darren Hart @ 2012-05-01 22:13 UTC (permalink / raw)
  To: Yocto Project, Bruce Ashfield, Tom Zanussi

Add the features commonly added to standard and preempt-rt scc files for
sys940x as well. This enables live boot capability as well various analysis
bits.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
---
 .../bsp/sys940x/sys940x-preempt-rt.scc             |    5 +++++
 .../kernel-cache/bsp/sys940x/sys940x-standard.scc  |    9 ++++++++-
 2 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/meta/cfg/kernel-cache/bsp/sys940x/sys940x-preempt-rt.scc b/meta/cfg/kernel-cache/bsp/sys940x/sys940x-preempt-rt.scc
index 39fa1d4..daf5963 100644
--- a/meta/cfg/kernel-cache/bsp/sys940x/sys940x-preempt-rt.scc
+++ b/meta/cfg/kernel-cache/bsp/sys940x/sys940x-preempt-rt.scc
@@ -8,3 +8,8 @@ include ktypes/preempt-rt
 include sys940x.scc
 include cfg/efi-ext.scc
 
+# default policy for standard kernels
+include cfg/boot-live.scc
+include features/logbuf/size-normal.scc
+include features/latencytop/latencytop.scc
+include features/profiling/profiling.scc
diff --git a/meta/cfg/kernel-cache/bsp/sys940x/sys940x-standard.scc b/meta/cfg/kernel-cache/bsp/sys940x/sys940x-standard.scc
index 23f99fb..cf6d767 100644
--- a/meta/cfg/kernel-cache/bsp/sys940x/sys940x-standard.scc
+++ b/meta/cfg/kernel-cache/bsp/sys940x/sys940x-standard.scc
@@ -2,10 +2,17 @@ define KMACHINE sys940x
 define KTYPE standard
 define KARCH i386
 
+include ktypes/standard
+
 include features/emgd/emgd-1.10.scc
 git merge emgd-1.10
 
 include sys940x.scc
 include cfg/efi-ext.scc
 
-include ktypes/standard
+# default policy for standard kernels
+include cfg/boot-live.scc
+include features/logbuf/size-normal.scc
+include features/latencytop/latencytop.scc
+include features/profiling/profiling.scc
+
-- 
1.7.7.6



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 6/7] sys940x: Use PHYSICAL_START of 0x200000 to boot
  2012-05-01 22:13 [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates Darren Hart
                   ` (4 preceding siblings ...)
  2012-05-01 22:13 ` [PATCH 5/7] sys940x: Add common standard and preempt-rt features Darren Hart
@ 2012-05-01 22:13 ` Darren Hart
  2012-05-01 22:13 ` [PATCH 7/7] sys940x: Cleanup sys940x.scc Darren Hart
  2012-05-03 22:46 ` [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates Bruce Ashfield
  7 siblings, 0 replies; 10+ messages in thread
From: Darren Hart @ 2012-05-01 22:13 UTC (permalink / raw)
  To: Yocto Project, Bruce Ashfield, Tom Zanussi

Boot fails with a kernel panic in setup_trampoline or shortly
after Freeing kernel memory, when using 0x1000000 for PHYSICAL_START
and PHYSICAL_ALIGN. Use 0x200000 instead.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
---
 meta/cfg/kernel-cache/bsp/sys940x/sys940x.cfg |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/meta/cfg/kernel-cache/bsp/sys940x/sys940x.cfg b/meta/cfg/kernel-cache/bsp/sys940x/sys940x.cfg
index b101419..d4b44b2 100644
--- a/meta/cfg/kernel-cache/bsp/sys940x/sys940x.cfg
+++ b/meta/cfg/kernel-cache/bsp/sys940x/sys940x.cfg
@@ -42,3 +42,7 @@ CONFIG_MODULES=y
 CONFIG_SHMEM=y
 CONFIG_TMPFS=y
 CONFIG_PACKET=y
+
+# Boot fails with the default of 0x1000000 (16MB)
+CONFIG_PHYSICAL_START=0x200000
+CONFIG_PHYSICAL_ALIGN=0x200000
-- 
1.7.7.6



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 7/7] sys940x: Cleanup sys940x.scc
  2012-05-01 22:13 [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates Darren Hart
                   ` (5 preceding siblings ...)
  2012-05-01 22:13 ` [PATCH 6/7] sys940x: Use PHYSICAL_START of 0x200000 to boot Darren Hart
@ 2012-05-01 22:13 ` Darren Hart
  2012-05-03 22:46 ` [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates Bruce Ashfield
  7 siblings, 0 replies; 10+ messages in thread
From: Darren Hart @ 2012-05-01 22:13 UTC (permalink / raw)
  To: Yocto Project, Bruce Ashfield, Tom Zanussi

Move the smp and minimal efi fragments into the base
BSP description rather than the recipe KERNEL_FEATURES.

Drop the -standard features from the base BSP description.
These are already defined in sys940x-standard.scc, and they
may not be wanted in other variants (such as tiny).

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
---
 meta/cfg/kernel-cache/bsp/sys940x/sys940x.scc |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/meta/cfg/kernel-cache/bsp/sys940x/sys940x.scc b/meta/cfg/kernel-cache/bsp/sys940x/sys940x.scc
index 962b837..144d919 100644
--- a/meta/cfg/kernel-cache/bsp/sys940x/sys940x.scc
+++ b/meta/cfg/kernel-cache/bsp/sys940x/sys940x.scc
@@ -6,10 +6,6 @@ include cfg/dmaengine.scc
 include features/serial/8250.scc
 include cfg/vesafb.scc
 include cfg/usb-mass-storage.scc
-include cfg/boot-live.scc
 include features/power/intel.scc
-
-include features/logbuf/size-normal.scc
-
-include features/latencytop/latencytop.scc
-include features/profiling/profiling.scc
+include cfg/smp.scc
+include cfg/efi.scc
-- 
1.7.7.6



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates
  2012-05-01 22:13 [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates Darren Hart
                   ` (6 preceding siblings ...)
  2012-05-01 22:13 ` [PATCH 7/7] sys940x: Cleanup sys940x.scc Darren Hart
@ 2012-05-03 22:46 ` Bruce Ashfield
  2012-05-07 13:01   ` Bruce Ashfield
  7 siblings, 1 reply; 10+ messages in thread
From: Bruce Ashfield @ 2012-05-03 22:46 UTC (permalink / raw)
  To: Darren Hart; +Cc: Yocto Project

On 12-05-01 06:13 PM, Darren Hart wrote:
> Please apply to linux-yocto-3.2 meta branch.
>
> The following changes since commit b14a08f5c7b469a5077c10942f4e1aec171faa9d:
>
>    meta: Clean up BSPs kernel config (2012-04-17 16:04:15 -0400)
>
> are available in the git repository at:
>    git://git.infradead.org/users/dvhart/linux-yocto-3.2.git dvhart/meta/dev
>    http://git.infradead.org/users/dvhart/linux-yocto-3.2.git/shortlog/refs/heads/dvhart/meta/dev

queued. I'll push these when I get a better 'net connection.

Bruce

>
> Darren Hart (7):
>    fri2: Use emgd-1.10 feature and branch
>    fri2: Cleanup fri2-$KTYPE.scc files re efi-ext.scc
>    sys940x: Move emgd-1.10 data to the standard scc file
>    sys940x: Add efi-ext to standard and preempt-rt configs
>    sys940x: Add common standard and preempt-rt features
>    sys940x: Use PHYSICAL_START of 0x200000 to boot
>    sys940x: Cleanup sys940x.scc
>
>   meta/cfg/kernel-cache/bsp/fri2/fri2-preempt-rt.scc |    2 +-
>   meta/cfg/kernel-cache/bsp/fri2/fri2-standard.scc   |    6 +++---
>   .../bsp/sys940x/sys940x-preempt-rt.scc             |    8 ++++++++
>   .../kernel-cache/bsp/sys940x/sys940x-standard.scc  |   12 ++++++++++++
>   meta/cfg/kernel-cache/bsp/sys940x/sys940x.cfg      |    4 ++++
>   meta/cfg/kernel-cache/bsp/sys940x/sys940x.scc      |   10 ++--------
>   6 files changed, 30 insertions(+), 12 deletions(-)
>



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates
  2012-05-03 22:46 ` [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates Bruce Ashfield
@ 2012-05-07 13:01   ` Bruce Ashfield
  0 siblings, 0 replies; 10+ messages in thread
From: Bruce Ashfield @ 2012-05-07 13:01 UTC (permalink / raw)
  To: Darren Hart; +Cc: Yocto Project

On 12-05-03 06:46 PM, Bruce Ashfield wrote:
> On 12-05-01 06:13 PM, Darren Hart wrote:
>> Please apply to linux-yocto-3.2 meta branch.
>>
>> The following changes since commit
>> b14a08f5c7b469a5077c10942f4e1aec171faa9d:
>>
>> meta: Clean up BSPs kernel config (2012-04-17 16:04:15 -0400)
>>
>> are available in the git repository at:
>> git://git.infradead.org/users/dvhart/linux-yocto-3.2.git dvhart/meta/dev
>> http://git.infradead.org/users/dvhart/linux-yocto-3.2.git/shortlog/refs/heads/dvhart/meta/dev
>>
>
> queued. I'll push these when I get a better 'net connection.

Along with everything else, this is now pushed out and available.

Bruce

>
> Bruce
>
>>
>> Darren Hart (7):
>> fri2: Use emgd-1.10 feature and branch
>> fri2: Cleanup fri2-$KTYPE.scc files re efi-ext.scc
>> sys940x: Move emgd-1.10 data to the standard scc file
>> sys940x: Add efi-ext to standard and preempt-rt configs
>> sys940x: Add common standard and preempt-rt features
>> sys940x: Use PHYSICAL_START of 0x200000 to boot
>> sys940x: Cleanup sys940x.scc
>>
>> meta/cfg/kernel-cache/bsp/fri2/fri2-preempt-rt.scc | 2 +-
>> meta/cfg/kernel-cache/bsp/fri2/fri2-standard.scc | 6 +++---
>> .../bsp/sys940x/sys940x-preempt-rt.scc | 8 ++++++++
>> .../kernel-cache/bsp/sys940x/sys940x-standard.scc | 12 ++++++++++++
>> meta/cfg/kernel-cache/bsp/sys940x/sys940x.cfg | 4 ++++
>> meta/cfg/kernel-cache/bsp/sys940x/sys940x.scc | 10 ++--------
>> 6 files changed, 30 insertions(+), 12 deletions(-)
>>
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto



^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2012-05-07 13:01 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-01 22:13 [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates Darren Hart
2012-05-01 22:13 ` [PATCH 1/7] fri2: Use emgd-1.10 feature and branch Darren Hart
2012-05-01 22:13 ` [PATCH 2/7] fri2: Cleanup fri2-$KTYPE.scc files re efi-ext.scc Darren Hart
2012-05-01 22:13 ` [PATCH 3/7] sys940x: Move emgd-1.10 data to the standard scc file Darren Hart
2012-05-01 22:13 ` [PATCH 4/7] sys940x: Add efi-ext to standard and preempt-rt configs Darren Hart
2012-05-01 22:13 ` [PATCH 5/7] sys940x: Add common standard and preempt-rt features Darren Hart
2012-05-01 22:13 ` [PATCH 6/7] sys940x: Use PHYSICAL_START of 0x200000 to boot Darren Hart
2012-05-01 22:13 ` [PATCH 7/7] sys940x: Cleanup sys940x.scc Darren Hart
2012-05-03 22:46 ` [PATCH 0/7][linux-yocto-3.2] fri2 and sys940x meta updates Bruce Ashfield
2012-05-07 13:01   ` Bruce Ashfield

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.