All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Automatically bring up usb0 on BeagleBoard xM
@ 2011-04-20 10:52 Paul Eggleton
  2011-04-20 10:52 ` [PATCH 1/1] netbase: automatically " Paul Eggleton
  0 siblings, 1 reply; 8+ messages in thread
From: Paul Eggleton @ 2011-04-20 10:52 UTC (permalink / raw)
  To: poky

From: Paul Eggleton <paul.eggleton@linux.intel.com>

Automatically bring up main ethernet port (usb0) on BeagleBoard xM.

Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: paule/bbxm-netauto
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=paule/bbxm-netauto

Thanks,
    Paul Eggleton <paul.eggleton@linux.intel.com>
---


Paul Eggleton (1):
  netbase: automatically bring up usb0 on BeagleBoard xM

 .../netbase/netbase-4.45/beagleboard/interfaces    |   27 ++++++++++++++++++++
 .../recipes-core/netbase/netbase_4.45.bbappend     |    3 ++
 2 files changed, 30 insertions(+), 0 deletions(-)
 create mode 100644 meta-yocto/recipes-core/netbase/netbase-4.45/beagleboard/interfaces
 create mode 100644 meta-yocto/recipes-core/netbase/netbase_4.45.bbappend



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

* [PATCH 1/1] netbase: automatically bring up usb0 on BeagleBoard xM
  2011-04-20 10:52 [PATCH 0/1] Automatically bring up usb0 on BeagleBoard xM Paul Eggleton
@ 2011-04-20 10:52 ` Paul Eggleton
  2011-04-20 11:31   ` Koen Kooi
  0 siblings, 1 reply; 8+ messages in thread
From: Paul Eggleton @ 2011-04-20 10:52 UTC (permalink / raw)
  To: poky

From: Paul Eggleton <paul.eggleton@linux.intel.com>

Avoids manual configuration of the BeagleBoard xM's ethernet port
(which shows up as usb0).

Fixes [YOCTO #930]

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 .../netbase/netbase-4.45/beagleboard/interfaces    |   27 ++++++++++++++++++++
 .../recipes-core/netbase/netbase_4.45.bbappend     |    3 ++
 2 files changed, 30 insertions(+), 0 deletions(-)
 create mode 100644 meta-yocto/recipes-core/netbase/netbase-4.45/beagleboard/interfaces
 create mode 100644 meta-yocto/recipes-core/netbase/netbase_4.45.bbappend

diff --git a/meta-yocto/recipes-core/netbase/netbase-4.45/beagleboard/interfaces b/meta-yocto/recipes-core/netbase/netbase-4.45/beagleboard/interfaces
new file mode 100644
index 0000000..b6935c1
--- /dev/null
+++ b/meta-yocto/recipes-core/netbase/netbase-4.45/beagleboard/interfaces
@@ -0,0 +1,27 @@
+# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
+ 
+# The loopback interface
+auto lo
+iface lo inet loopback
+
+# Wireless interfaces
+iface wlan0 inet dhcp
+	wireless_mode managed
+	wireless_essid any
+	wpa-driver wext
+	wpa-conf /etc/wpa_supplicant.conf
+
+iface atml0 inet dhcp
+
+# Wired or wireless interfaces
+auto eth0
+iface eth0 inet dhcp
+iface eth1 inet dhcp
+
+# Ethernet/RNDIS gadget (g_ether) or LAN9514 on BeagleBoard xM
+auto usb0
+iface usb0 inet dhcp
+
+# Bluetooth networking
+iface bnep0 inet dhcp
+
diff --git a/meta-yocto/recipes-core/netbase/netbase_4.45.bbappend b/meta-yocto/recipes-core/netbase/netbase_4.45.bbappend
new file mode 100644
index 0000000..4b8d0e6
--- /dev/null
+++ b/meta-yocto/recipes-core/netbase/netbase_4.45.bbappend
@@ -0,0 +1,3 @@
+THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}"
+FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:"
+
-- 
1.7.1



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

* Re: [PATCH 1/1] netbase: automatically bring up usb0 on BeagleBoard xM
  2011-04-20 10:52 ` [PATCH 1/1] netbase: automatically " Paul Eggleton
@ 2011-04-20 11:31   ` Koen Kooi
  2011-04-20 11:40     ` Gary Thomas
  2011-04-20 12:07     ` Paul Eggleton
  0 siblings, 2 replies; 8+ messages in thread
From: Koen Kooi @ 2011-04-20 11:31 UTC (permalink / raw)
  To: poky


Op 20 apr 2011, om 12:52 heeft Paul Eggleton het volgende geschreven:

> From: Paul Eggleton <paul.eggleton@linux.intel.com>
> 
> Avoids manual configuration of the BeagleBoard xM's ethernet port
> (which shows up as usb0).
> 
> Fixes [YOCTO #930]
> 
> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
> ---
> .../netbase/netbase-4.45/beagleboard/interfaces    |   27 ++++++++++++++++++++
> .../recipes-core/netbase/netbase_4.45.bbappend     |    3 ++
> 2 files changed, 30 insertions(+), 0 deletions(-)
> create mode 100644 meta-yocto/recipes-core/netbase/netbase-4.45/beagleboard/interfaces
> create mode 100644 meta-yocto/recipes-core/netbase/netbase_4.45.bbappend

You mean meta-texasinstruments, right? Or do you yocto people really want to take over beagleboard?

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

* Re: [PATCH 1/1] netbase: automatically bring up usb0 on BeagleBoard xM
  2011-04-20 11:31   ` Koen Kooi
@ 2011-04-20 11:40     ` Gary Thomas
  2011-04-20 11:55       ` Koen Kooi
  2011-04-20 12:07     ` Paul Eggleton
  1 sibling, 1 reply; 8+ messages in thread
From: Gary Thomas @ 2011-04-20 11:40 UTC (permalink / raw)
  To: Koen Kooi; +Cc: poky

On 04/20/2011 05:31 AM, Koen Kooi wrote:
>
> Op 20 apr 2011, om 12:52 heeft Paul Eggleton het volgende geschreven:
>
>> From: Paul Eggleton<paul.eggleton@linux.intel.com>
>>
>> Avoids manual configuration of the BeagleBoard xM's ethernet port
>> (which shows up as usb0).
>>
>> Fixes [YOCTO #930]
>>
>> Signed-off-by: Paul Eggleton<paul.eggleton@linux.intel.com>
>> ---
>> .../netbase/netbase-4.45/beagleboard/interfaces    |   27 ++++++++++++++++++++
>> .../recipes-core/netbase/netbase_4.45.bbappend     |    3 ++
>> 2 files changed, 30 insertions(+), 0 deletions(-)
>> create mode 100644 meta-yocto/recipes-core/netbase/netbase-4.45/beagleboard/interfaces
>> create mode 100644 meta-yocto/recipes-core/netbase/netbase_4.45.bbappend
>
> You mean meta-texasinstruments, right? Or do you yocto people really want to take over beagleboard?

These are in the Poky tree, not the oe-core+

-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------


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

* Re: [PATCH 1/1] netbase: automatically bring up usb0 on BeagleBoard xM
  2011-04-20 11:40     ` Gary Thomas
@ 2011-04-20 11:55       ` Koen Kooi
  2011-04-20 12:00         ` Gary Thomas
  0 siblings, 1 reply; 8+ messages in thread
From: Koen Kooi @ 2011-04-20 11:55 UTC (permalink / raw)
  To: poky


Op 20 apr 2011, om 13:40 heeft Gary Thomas het volgende geschreven:

> On 04/20/2011 05:31 AM, Koen Kooi wrote:
>> 
>> Op 20 apr 2011, om 12:52 heeft Paul Eggleton het volgende geschreven:
>> 
>>> From: Paul Eggleton<paul.eggleton@linux.intel.com>
>>> 
>>> Avoids manual configuration of the BeagleBoard xM's ethernet port
>>> (which shows up as usb0).
>>> 
>>> Fixes [YOCTO #930]
>>> 
>>> Signed-off-by: Paul Eggleton<paul.eggleton@linux.intel.com>
>>> ---
>>> .../netbase/netbase-4.45/beagleboard/interfaces    |   27 ++++++++++++++++++++
>>> .../recipes-core/netbase/netbase_4.45.bbappend     |    3 ++
>>> 2 files changed, 30 insertions(+), 0 deletions(-)
>>> create mode 100644 meta-yocto/recipes-core/netbase/netbase-4.45/beagleboard/interfaces
>>> create mode 100644 meta-yocto/recipes-core/netbase/netbase_4.45.bbappend
>> 
>> You mean meta-texasinstruments, right? Or do you yocto people really want to take over beagleboard?
> 
> These are in the Poky tree, not the oe-core+

I don't understand what you are saying. Are you saying poky is not based on oe-core?



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

* Re: [PATCH 1/1] netbase: automatically bring up usb0 on BeagleBoard xM
  2011-04-20 11:55       ` Koen Kooi
@ 2011-04-20 12:00         ` Gary Thomas
  0 siblings, 0 replies; 8+ messages in thread
From: Gary Thomas @ 2011-04-20 12:00 UTC (permalink / raw)
  To: Koen Kooi; +Cc: poky

On 04/20/2011 05:55 AM, Koen Kooi wrote:
>
> Op 20 apr 2011, om 13:40 heeft Gary Thomas het volgende geschreven:
>
>> On 04/20/2011 05:31 AM, Koen Kooi wrote:
>>>
>>> Op 20 apr 2011, om 12:52 heeft Paul Eggleton het volgende geschreven:
>>>
>>>> From: Paul Eggleton<paul.eggleton@linux.intel.com>
>>>>
>>>> Avoids manual configuration of the BeagleBoard xM's ethernet port
>>>> (which shows up as usb0).
>>>>
>>>> Fixes [YOCTO #930]
>>>>
>>>> Signed-off-by: Paul Eggleton<paul.eggleton@linux.intel.com>
>>>> ---
>>>> .../netbase/netbase-4.45/beagleboard/interfaces    |   27 ++++++++++++++++++++
>>>> .../recipes-core/netbase/netbase_4.45.bbappend     |    3 ++
>>>> 2 files changed, 30 insertions(+), 0 deletions(-)
>>>> create mode 100644 meta-yocto/recipes-core/netbase/netbase-4.45/beagleboard/interfaces
>>>> create mode 100644 meta-yocto/recipes-core/netbase/netbase_4.45.bbappend
>>>
>>> You mean meta-texasinstruments, right? Or do you yocto people really want to take over beagleboard?
>>
>> These are in the Poky tree, not the oe-core+
>
> I don't understand what you are saying. Are you saying poky is not based on oe-core?

Correct.  Poky came first and has its own tree.  OE-core is derived
from the Poky/Yocto tree.

For now, my understanding is that Poky gets its own patches which
are filtered into oe-core and meta-yocto

-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------


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

* Re: [PATCH 1/1] netbase: automatically bring up usb0 on BeagleBoard xM
  2011-04-20 11:31   ` Koen Kooi
  2011-04-20 11:40     ` Gary Thomas
@ 2011-04-20 12:07     ` Paul Eggleton
  2011-04-20 14:55       ` Darren Hart
  1 sibling, 1 reply; 8+ messages in thread
From: Paul Eggleton @ 2011-04-20 12:07 UTC (permalink / raw)
  To: poky

On Wednesday 20 April 2011 12:31:27 Koen Kooi wrote:
> You mean meta-texasinstruments, right? Or do you yocto people really want
> to take over beagleboard? 

Firstly, I thought Richard addressed this the other day.

Secondly, I'm more than happy to contribute this and fixes like it to meta-
texasinstruments, however right now I'm not even able to determine where the 
current repository for that layer actually is, so it's a bit hard for me to do 
so. Perhaps you could tell me where it is?

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre (UK)


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

* Re: [PATCH 1/1] netbase: automatically bring up usb0 on BeagleBoard xM
  2011-04-20 12:07     ` Paul Eggleton
@ 2011-04-20 14:55       ` Darren Hart
  0 siblings, 0 replies; 8+ messages in thread
From: Darren Hart @ 2011-04-20 14:55 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: poky

On Wed, 2011-04-20 at 13:07 +0100, Paul Eggleton wrote:
> On Wednesday 20 April 2011 12:31:27 Koen Kooi wrote:
> > You mean meta-texasinstruments, right? Or do you yocto people really want
> > to take over beagleboard? 
> 
> Firstly, I thought Richard addressed this the other day.
> 
> Secondly, I'm more than happy to contribute this and fixes like it to meta-
> texasinstruments, however right now I'm not even able to determine where the 
> current repository for that layer actually is, so it's a bit hard for me to do 
> so. Perhaps you could tell me where it is?

Paul is addressing an existing issue in the existing repository, not
something in response to our discussions on supporting the BBxM going
forward.

-- 
Darren Hart
Yocto Linux Kernel



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

end of thread, other threads:[~2011-04-20 14:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-20 10:52 [PATCH 0/1] Automatically bring up usb0 on BeagleBoard xM Paul Eggleton
2011-04-20 10:52 ` [PATCH 1/1] netbase: automatically " Paul Eggleton
2011-04-20 11:31   ` Koen Kooi
2011-04-20 11:40     ` Gary Thomas
2011-04-20 11:55       ` Koen Kooi
2011-04-20 12:00         ` Gary Thomas
2011-04-20 12:07     ` Paul Eggleton
2011-04-20 14:55       ` Darren Hart

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.