[meta-ti] [master][PATCH v3] netbase: Add base interfaces file

Cooper Jr., Franklin fcooper at ti.com
Wed Sep 5 13:06:45 PDT 2012


Ignore this patch. Adding to meta-arago-distro.

-----Original Message-----
From: meta-ti-bounces at yoctoproject.org [mailto:meta-ti-bounces at yoctoproject.org] On Behalf Of Koen Kooi
Sent: Saturday, September 01, 2012 1:48 AM
To: fcooperjr27 at gmail.com
Cc: meta-ti at yoctoproject.org
Subject: Re: [meta-ti] [master][PATCH v3] netbase: Add base interfaces file


Op 31 aug. 2012, om 23:54 heeft fcooperjr27 at gmail.com het volgende geschreven:

> From: Franklin S Cooper Jr <fcooper at ti.com>
> 
> * Add PRINC
> * Create copies of the interfaces file that was grabbed from oe-core  
> and copy it into TI SOC families specific directories
> * Update to use the new syntax for extending the file search path
> 
> Signed-off-by: Franklin S Cooper Jr <fcooper at ti.com>
> ---
> recipes-core/netbase/netbase-5.0/omap3/interfaces  |   31 ++++++++++++++++++++
> .../netbase/netbase-5.0/omapl138/interfaces        |   31 ++++++++++++++++++++
> recipes-core/netbase/netbase-5.0/ti33x/interfaces  |   31 ++++++++++++++++++++

So all subartic and omap3 machines will now get a different interfaces file. Not a good idea. NAK

> recipes-core/netbase/netbase_5.0.bbappend          |    5 ++-
> 4 files changed, 96 insertions(+), 2 deletions(-) create mode 100644 
> recipes-core/netbase/netbase-5.0/omap3/interfaces
> create mode 100644 
> recipes-core/netbase/netbase-5.0/omapl138/interfaces
> create mode 100644 recipes-core/netbase/netbase-5.0/ti33x/interfaces
> 
> diff --git a/recipes-core/netbase/netbase-5.0/omap3/interfaces 
> b/recipes-core/netbase/netbase-5.0/omap3/interfaces
> new file mode 100644
> index 0000000..0acf4cf
> --- /dev/null
> +++ b/recipes-core/netbase/netbase-5.0/omap3/interfaces
> @@ -0,0 +1,31 @@
> +# /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 on host side, usbnet and random hwaddr iface usb0 inet 
> +static
> +	address 192.168.7.2
> +	netmask 255.255.255.0
> +	network 192.168.7.0
> +	gateway 192.168.7.1
> +
> +# Bluetooth networking
> +iface bnep0 inet dhcp
> +
> diff --git a/recipes-core/netbase/netbase-5.0/omapl138/interfaces 
> b/recipes-core/netbase/netbase-5.0/omapl138/interfaces
> new file mode 100644
> index 0000000..0acf4cf
> --- /dev/null
> +++ b/recipes-core/netbase/netbase-5.0/omapl138/interfaces
> @@ -0,0 +1,31 @@
> +# /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 on host side, usbnet and random hwaddr iface usb0 inet 
> +static
> +	address 192.168.7.2
> +	netmask 255.255.255.0
> +	network 192.168.7.0
> +	gateway 192.168.7.1
> +
> +# Bluetooth networking
> +iface bnep0 inet dhcp
> +
> diff --git a/recipes-core/netbase/netbase-5.0/ti33x/interfaces 
> b/recipes-core/netbase/netbase-5.0/ti33x/interfaces
> new file mode 100644
> index 0000000..0acf4cf
> --- /dev/null
> +++ b/recipes-core/netbase/netbase-5.0/ti33x/interfaces
> @@ -0,0 +1,31 @@
> +# /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 on host side, usbnet and random hwaddr iface usb0 inet 
> +static
> +	address 192.168.7.2
> +	netmask 255.255.255.0
> +	network 192.168.7.0
> +	gateway 192.168.7.1
> +
> +# Bluetooth networking
> +iface bnep0 inet dhcp
> +
> diff --git a/recipes-core/netbase/netbase_5.0.bbappend 
> b/recipes-core/netbase/netbase_5.0.bbappend
> index 4b8d0e6..80e3a16 100644
> --- a/recipes-core/netbase/netbase_5.0.bbappend
> +++ b/recipes-core/netbase/netbase_5.0.bbappend
> @@ -1,3 +1,4 @@
> -THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}"
> -FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:"
> +# look for files in this layer first
> +FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
> 
> +PRINC = "1"
> --
> 1.7.0.4
> 
> _______________________________________________
> meta-ti mailing list
> meta-ti at yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti

_______________________________________________
meta-ti mailing list
meta-ti at yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-ti



More information about the meta-ti mailing list