All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] [linux-yocto-3.2][meta] common-pc: Add PCNET32 to the config
@ 2012-03-23 21:52 Darren Hart
  2012-03-23 21:52 ` [PATCH 1/1] [meta] " Darren Hart
  2012-03-26 13:53 ` [PATCH 0/1] [linux-yocto-3.2][meta] " Bruce Ashfield
  0 siblings, 2 replies; 3+ messages in thread
From: Darren Hart @ 2012-03-23 21:52 UTC (permalink / raw)
  To: Yocto Project, Bruce Ashfield, Saul Wold

In support of the self-hosted-image, add CONFIG_PCNET32 to the common-pc BSP
default cfg. This enables the qemux86 image to be run on both qemux86 machines
as well as the vmware 32b machine. Since the qemux86 machine optionally supports
pcnet, this seems a reasonable compromise to managing a dedicated BSP for a
self-hosted-image machine which would be superset of the qemux86 machine.

As this is a single CONFIG_ option, add it to the common-pc.cfg directly, rather
than defining a new feature.

The following changes since commit 514847185c78c07f52e02750fbe0a03ca3a31d8f:

  meta: update kver to v3.2.11 (2012-03-16 10:42:41 -0400)

are available in the git repository at:
  git://git.yoctoproject.org/linux-yocto-2.6.37-contrib dvhart/meta/pcnet
  http://git.yoctoproject.org/cgit.cgi/linux-yocto-2.6.37-contrib/log/?h=dvhart/meta/pcnet

Darren Hart (1):
  [meta] common-pc: Add PCNET32 to the config

 meta/cfg/kernel-cache/bsp/common-pc/common-pc.cfg |    3 +++
 meta/cfg/kernel-cache/bsp/common-pc/hardware.cfg  |    1 +
 2 files changed, 4 insertions(+), 0 deletions(-)

-- 
1.7.5.4



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

* [PATCH 1/1] [meta] common-pc: Add PCNET32 to the config
  2012-03-23 21:52 [PATCH 0/1] [linux-yocto-3.2][meta] common-pc: Add PCNET32 to the config Darren Hart
@ 2012-03-23 21:52 ` Darren Hart
  2012-03-26 13:53 ` [PATCH 0/1] [linux-yocto-3.2][meta] " Bruce Ashfield
  1 sibling, 0 replies; 3+ messages in thread
From: Darren Hart @ 2012-03-23 21:52 UTC (permalink / raw)
  To: Yocto Project, Bruce Ashfield, Saul Wold

Qemu and VM Ware both support PCNET32 and the latter requires it for
32 bit images.

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

diff --git a/meta/cfg/kernel-cache/bsp/common-pc/common-pc.cfg b/meta/cfg/kernel-cache/bsp/common-pc/common-pc.cfg
index 6d576ee..c0c899e 100644
--- a/meta/cfg/kernel-cache/bsp/common-pc/common-pc.cfg
+++ b/meta/cfg/kernel-cache/bsp/common-pc/common-pc.cfg
@@ -45,6 +45,9 @@ CONFIG_MAC80211=y
 CONFIG_WLAN=y
 CONFIG_ATH_COMMON=y
 CONFIG_ATH5K=y
+
+CONFIG_PCNET32=y
+
 CONFIG_INPUT=y
 CONFIG_INPUT_MOUSEDEV=y
 CONFIG_INPUT_EVDEV=y
diff --git a/meta/cfg/kernel-cache/bsp/common-pc/hardware.cfg b/meta/cfg/kernel-cache/bsp/common-pc/hardware.cfg
index 34c6200..869cf62 100644
--- a/meta/cfg/kernel-cache/bsp/common-pc/hardware.cfg
+++ b/meta/cfg/kernel-cache/bsp/common-pc/hardware.cfg
@@ -6,3 +6,4 @@ CONFIG_MAC80211
 CONFIG_SND_HDA_INTEL
 CONFIG_SERIAL_8250
 CONFIG_SERIAL_8250_CONSOLE
+CONFIG_PCNET32
-- 
1.7.5.4



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

* Re: [PATCH 0/1] [linux-yocto-3.2][meta] common-pc: Add PCNET32 to the config
  2012-03-23 21:52 [PATCH 0/1] [linux-yocto-3.2][meta] common-pc: Add PCNET32 to the config Darren Hart
  2012-03-23 21:52 ` [PATCH 1/1] [meta] " Darren Hart
@ 2012-03-26 13:53 ` Bruce Ashfield
  1 sibling, 0 replies; 3+ messages in thread
From: Bruce Ashfield @ 2012-03-26 13:53 UTC (permalink / raw)
  To: Darren Hart; +Cc: Yocto Project

On 12-03-23 05:52 PM, Darren Hart wrote:
> In support of the self-hosted-image, add CONFIG_PCNET32 to the common-pc BSP
> default cfg. This enables the qemux86 image to be run on both qemux86 machines
> as well as the vmware 32b machine. Since the qemux86 machine optionally supports
> pcnet, this seems a reasonable compromise to managing a dedicated BSP for a
> self-hosted-image machine which would be superset of the qemux86 machine.
>
> As this is a single CONFIG_ option, add it to the common-pc.cfg directly, rather
> than defining a new feature.

merged. I don't have any other pending commits, so I'll push
this out later today as a standalone update.

Cheers,

Bruce

>
> The following changes since commit 514847185c78c07f52e02750fbe0a03ca3a31d8f:
>
>    meta: update kver to v3.2.11 (2012-03-16 10:42:41 -0400)
>
> are available in the git repository at:
>    git://git.yoctoproject.org/linux-yocto-2.6.37-contrib dvhart/meta/pcnet
>    http://git.yoctoproject.org/cgit.cgi/linux-yocto-2.6.37-contrib/log/?h=dvhart/meta/pcnet
>
> Darren Hart (1):
>    [meta] common-pc: Add PCNET32 to the config
>
>   meta/cfg/kernel-cache/bsp/common-pc/common-pc.cfg |    3 +++
>   meta/cfg/kernel-cache/bsp/common-pc/hardware.cfg  |    1 +
>   2 files changed, 4 insertions(+), 0 deletions(-)
>



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

end of thread, other threads:[~2012-03-26 13:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-23 21:52 [PATCH 0/1] [linux-yocto-3.2][meta] common-pc: Add PCNET32 to the config Darren Hart
2012-03-23 21:52 ` [PATCH 1/1] [meta] " Darren Hart
2012-03-26 13:53 ` [PATCH 0/1] [linux-yocto-3.2][meta] " 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.