All of lore.kernel.org
 help / color / mirror / Atom feed
* BUG 2.0 support backporting
@ 2010-03-22 11:03 Marcin Juszkiewicz
  2010-03-22 11:03 ` [PATCH][STABLE] bug20: initial configuration for BUG 2.0 device Marcin Juszkiewicz
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Marcin Juszkiewicz @ 2010-03-22 11:03 UTC (permalink / raw)
  To: openembedded-devel

We are still using stable/2009 for our work. Our current device 
(BUG 2.0) was added into .dev some time ago and I want to merge
components which do not change into stable.






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

* [PATCH][STABLE] bug20: initial configuration for BUG 2.0 device
  2010-03-22 11:03 BUG 2.0 support backporting Marcin Juszkiewicz
@ 2010-03-22 11:03 ` Marcin Juszkiewicz
  2010-03-22 12:33   ` Koen Kooi
  2010-03-23  1:56   ` Philip Balister
  2010-03-22 11:03 ` [PATCH][STABLE] netbase: add BUG 2.0 support Marcin Juszkiewicz
  2010-03-22 11:03 ` [PATCH][STABLE] xserver-xorg-conf: provide working setup for BUG 2.0 Marcin Juszkiewicz
  2 siblings, 2 replies; 9+ messages in thread
From: Marcin Juszkiewicz @ 2010-03-22 11:03 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Marcin Juszkiewicz

From: Marcin Juszkiewicz <marcin@buglabs.net>

Currently it is at prototype phase so company internal only.

Kernel recipe will not be added into OE for now.

Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
---
 conf/machine/bug20.conf |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 47 insertions(+), 0 deletions(-)
 create mode 100644 conf/machine/bug20.conf

diff --git a/conf/machine/bug20.conf b/conf/machine/bug20.conf
new file mode 100644
index 0000000..dbc1faf
--- /dev/null
+++ b/conf/machine/bug20.conf
@@ -0,0 +1,47 @@
+#@TYPE: Machine
+#@NAME: BUG 2.0
+#@DESCRIPTION: Machine configuration for the BUG 2.0 board (OMAP3530 based)
+TARGET_ARCH = "arm"
+
+PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg"
+XSERVER = "xserver-xorg \
+           xserver-xorg-extension-dri \
+           xserver-xorg-extension-glx \
+           xf86-input-evdev \
+           xf86-input-mouse \
+           xf86-video-omapfb \
+           xf86-input-keyboard"
+
+# Only has DVI connector for external screen
+GUI_MACHINE_CLASS = "bigscreen"
+
+require conf/machine/include/omap3.inc
+
+# this kernel is not provided in OE yet
+PREFERRED_PROVIDER_virtual/kernel = "linux-omap-hah"
+
+IMAGE_FSTYPES += "tar.bz2"
+
+SERIAL_CONSOLE = "115200 ttyS2"
+
+UBOOT_MACHINE = "omap3_bug_config"
+
+# do ubiattach /dev/ubi_ctrl -m 4
+# From dmesg:
+# UBI: smallest flash I/O unit:    2048
+# UBI: logical eraseblock size:    129024 bytes
+# from ubiattach stdout:
+# UBI device number 0, total 1996 LEBs
+MKUBIFS_ARGS = "-m 2048 -e 129024 -c 1996"
+
+# do ubiattach /dev/ubi_ctrl -m 4
+# from dmesg:
+# UBI: smallest flash I/O unit:    2048
+# UBI: physical eraseblock size:   131072 bytes (128 KiB)
+# UBI: sub-page size:              512
+UBINIZE_ARGS = "-m 2048 -p 128KiB -s 512"
+
+PREFERRED_VERSION_u-boot = "git"
+
+# and sdio
+MACHINE_FEATURES = "kernel26 screen apm usbgadget usbhost vfat alsa"
-- 
1.7.0.2






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

* [PATCH][STABLE] netbase: add BUG 2.0 support
  2010-03-22 11:03 BUG 2.0 support backporting Marcin Juszkiewicz
  2010-03-22 11:03 ` [PATCH][STABLE] bug20: initial configuration for BUG 2.0 device Marcin Juszkiewicz
@ 2010-03-22 11:03 ` Marcin Juszkiewicz
  2010-03-22 12:32   ` Koen Kooi
  2010-03-23  1:57   ` Philip Balister
  2010-03-22 11:03 ` [PATCH][STABLE] xserver-xorg-conf: provide working setup for BUG 2.0 Marcin Juszkiewicz
  2 siblings, 2 replies; 9+ messages in thread
From: Marcin Juszkiewicz @ 2010-03-22 11:03 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Marcin Juszkiewicz

From: Marcin Juszkiewicz <marcin@buglabs.net>

Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
---
 recipes/netbase/netbase/bug20/hosts      |    3 +++
 recipes/netbase/netbase/bug20/interfaces |   29 +++++++++++++++++++++++++++++
 recipes/netbase/netbase_4.21.bb          |    2 +-
 3 files changed, 33 insertions(+), 1 deletions(-)
 create mode 100644 recipes/netbase/netbase/bug20/hosts
 create mode 100644 recipes/netbase/netbase/bug20/interfaces

diff --git a/recipes/netbase/netbase/bug20/hosts b/recipes/netbase/netbase/bug20/hosts
new file mode 100644
index 0000000..789d660
--- /dev/null
+++ b/recipes/netbase/netbase/bug20/hosts
@@ -0,0 +1,3 @@
+127.0.0.1	localhost.localdomain		localhost	bug
+10.10.10.1	bughost
+
diff --git a/recipes/netbase/netbase/bug20/interfaces b/recipes/netbase/netbase/bug20/interfaces
new file mode 100644
index 0000000..6e5f74e
--- /dev/null
+++ b/recipes/netbase/netbase/bug20/interfaces
@@ -0,0 +1,29 @@
+# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
+ 
+# The loopback interface
+auto lo
+iface lo inet loopback
+
+# Ethernet/RNDIS gadget (g_ether)
+# usbnet and static hwaddr for mac users
+auto usb0
+iface usb0 inet static
+	hwaddress ether A2:80:F4:8A:3C:91
+	address 10.10.10.10 
+	netmask 255.255.255.0
+	gateway 10.10.10.1 
+
+# Wired interface
+# BUGbase Ethernet which is built into kernel
+# It is on USB but we rename it by udev rule
+auto eth0
+iface eth0 inet dhcp
+
+#
+# wireless interface
+auto eth1
+iface eth1 inet dhcp
+	wireless_mode managed
+	wireless_essid any
+	wpa-driver wext
+	wpa-conf /etc/wpa_supplicant.conf
diff --git a/recipes/netbase/netbase_4.21.bb b/recipes/netbase/netbase_4.21.bb
index c8b4d19..04d9623 100644
--- a/recipes/netbase/netbase_4.21.bb
+++ b/recipes/netbase/netbase_4.21.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "This package provides the necessary \
 infrastructure for basic TCP/IP based networking."
 SECTION = "base"
 LICENSE = "GPL"
-PR = "r37"
+PR = "r41"
 
 inherit update-rc.d
 
-- 
1.7.0.2






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

* [PATCH][STABLE] xserver-xorg-conf: provide working setup for BUG 2.0
  2010-03-22 11:03 BUG 2.0 support backporting Marcin Juszkiewicz
  2010-03-22 11:03 ` [PATCH][STABLE] bug20: initial configuration for BUG 2.0 device Marcin Juszkiewicz
  2010-03-22 11:03 ` [PATCH][STABLE] netbase: add BUG 2.0 support Marcin Juszkiewicz
@ 2010-03-22 11:03 ` Marcin Juszkiewicz
  2010-03-22 12:33   ` Koen Kooi
  2 siblings, 1 reply; 9+ messages in thread
From: Marcin Juszkiewicz @ 2010-03-22 11:03 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Marcin Juszkiewicz

From: Marcin Juszkiewicz <marcin@buglabs.net>

Copied from BeagleBoard one.

Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
---
 recipes/xorg-xserver/xserver-xorg-conf_0.1.bb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb b/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
index 617eee6..1be87b1 100644
--- a/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
+++ b/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
@@ -1,5 +1,5 @@
 DESCRIPTION = "Machine specific xorg.conf files"
-PR = "r5"
+PR = "r21"
 
 SRC_URI = "file://xorg.conf"
 
-- 
1.7.0.2






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

* Re: [PATCH][STABLE] netbase: add BUG 2.0 support
  2010-03-22 11:03 ` [PATCH][STABLE] netbase: add BUG 2.0 support Marcin Juszkiewicz
@ 2010-03-22 12:32   ` Koen Kooi
  2010-03-23  1:57   ` Philip Balister
  1 sibling, 0 replies; 9+ messages in thread
From: Koen Kooi @ 2010-03-22 12:32 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Acked-by: Koen Kooi <koen@openembedded.org>

On 22-03-10 12:03, Marcin Juszkiewicz wrote:
> From: Marcin Juszkiewicz <marcin@buglabs.net>
> 
> Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
> ---
>  recipes/netbase/netbase/bug20/hosts      |    3 +++
>  recipes/netbase/netbase/bug20/interfaces |   29 +++++++++++++++++++++++++++++
>  recipes/netbase/netbase_4.21.bb          |    2 +-
>  3 files changed, 33 insertions(+), 1 deletions(-)
>  create mode 100644 recipes/netbase/netbase/bug20/hosts
>  create mode 100644 recipes/netbase/netbase/bug20/interfaces
> 
> diff --git a/recipes/netbase/netbase/bug20/hosts b/recipes/netbase/netbase/bug20/hosts
> new file mode 100644
> index 0000000..789d660
> --- /dev/null
> +++ b/recipes/netbase/netbase/bug20/hosts
> @@ -0,0 +1,3 @@
> +127.0.0.1	localhost.localdomain		localhost	bug
> +10.10.10.1	bughost
> +
> diff --git a/recipes/netbase/netbase/bug20/interfaces b/recipes/netbase/netbase/bug20/interfaces
> new file mode 100644
> index 0000000..6e5f74e
> --- /dev/null
> +++ b/recipes/netbase/netbase/bug20/interfaces
> @@ -0,0 +1,29 @@
> +# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
> + 
> +# The loopback interface
> +auto lo
> +iface lo inet loopback
> +
> +# Ethernet/RNDIS gadget (g_ether)
> +# usbnet and static hwaddr for mac users
> +auto usb0
> +iface usb0 inet static
> +	hwaddress ether A2:80:F4:8A:3C:91
> +	address 10.10.10.10 
> +	netmask 255.255.255.0
> +	gateway 10.10.10.1 
> +
> +# Wired interface
> +# BUGbase Ethernet which is built into kernel
> +# It is on USB but we rename it by udev rule
> +auto eth0
> +iface eth0 inet dhcp
> +
> +#
> +# wireless interface
> +auto eth1
> +iface eth1 inet dhcp
> +	wireless_mode managed
> +	wireless_essid any
> +	wpa-driver wext
> +	wpa-conf /etc/wpa_supplicant.conf
> diff --git a/recipes/netbase/netbase_4.21.bb b/recipes/netbase/netbase_4.21.bb
> index c8b4d19..04d9623 100644
> --- a/recipes/netbase/netbase_4.21.bb
> +++ b/recipes/netbase/netbase_4.21.bb
> @@ -2,7 +2,7 @@ DESCRIPTION = "This package provides the necessary \
>  infrastructure for basic TCP/IP based networking."
>  SECTION = "base"
>  LICENSE = "GPL"
> -PR = "r37"
> +PR = "r41"
>  
>  inherit update-rc.d
>  

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFLp2N2MkyGM64RGpERAn5XAKCHnQQ6XeDM0Qhty+F383FM/0/jDgCgqPBO
B57ODgJU0cs/fzmpqyKXxVQ=
=wlyu
-----END PGP SIGNATURE-----




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

* Re: [PATCH][STABLE] bug20: initial configuration for BUG 2.0 device
  2010-03-22 11:03 ` [PATCH][STABLE] bug20: initial configuration for BUG 2.0 device Marcin Juszkiewicz
@ 2010-03-22 12:33   ` Koen Kooi
  2010-03-23  1:56   ` Philip Balister
  1 sibling, 0 replies; 9+ messages in thread
From: Koen Kooi @ 2010-03-22 12:33 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Acked-by: Koen Kooi <koen@openembedded.org>

On 22-03-10 12:03, Marcin Juszkiewicz wrote:
> From: Marcin Juszkiewicz <marcin@buglabs.net>
> 
> Currently it is at prototype phase so company internal only.
> 
> Kernel recipe will not be added into OE for now.
> 
> Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
> ---
>  conf/machine/bug20.conf |   47 +++++++++++++++++++++++++++++++++++++++++++++++
>  1 files changed, 47 insertions(+), 0 deletions(-)
>  create mode 100644 conf/machine/bug20.conf
> 
> diff --git a/conf/machine/bug20.conf b/conf/machine/bug20.conf
> new file mode 100644
> index 0000000..dbc1faf
> --- /dev/null
> +++ b/conf/machine/bug20.conf
> @@ -0,0 +1,47 @@
> +#@TYPE: Machine
> +#@NAME: BUG 2.0
> +#@DESCRIPTION: Machine configuration for the BUG 2.0 board (OMAP3530 based)
> +TARGET_ARCH = "arm"
> +
> +PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg"
> +XSERVER = "xserver-xorg \
> +           xserver-xorg-extension-dri \
> +           xserver-xorg-extension-glx \
> +           xf86-input-evdev \
> +           xf86-input-mouse \
> +           xf86-video-omapfb \
> +           xf86-input-keyboard"
> +
> +# Only has DVI connector for external screen
> +GUI_MACHINE_CLASS = "bigscreen"
> +
> +require conf/machine/include/omap3.inc
> +
> +# this kernel is not provided in OE yet
> +PREFERRED_PROVIDER_virtual/kernel = "linux-omap-hah"
> +
> +IMAGE_FSTYPES += "tar.bz2"
> +
> +SERIAL_CONSOLE = "115200 ttyS2"
> +
> +UBOOT_MACHINE = "omap3_bug_config"
> +
> +# do ubiattach /dev/ubi_ctrl -m 4
> +# From dmesg:
> +# UBI: smallest flash I/O unit:    2048
> +# UBI: logical eraseblock size:    129024 bytes
> +# from ubiattach stdout:
> +# UBI device number 0, total 1996 LEBs
> +MKUBIFS_ARGS = "-m 2048 -e 129024 -c 1996"
> +
> +# do ubiattach /dev/ubi_ctrl -m 4
> +# from dmesg:
> +# UBI: smallest flash I/O unit:    2048
> +# UBI: physical eraseblock size:   131072 bytes (128 KiB)
> +# UBI: sub-page size:              512
> +UBINIZE_ARGS = "-m 2048 -p 128KiB -s 512"
> +
> +PREFERRED_VERSION_u-boot = "git"
> +
> +# and sdio
> +MACHINE_FEATURES = "kernel26 screen apm usbgadget usbhost vfat alsa"

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFLp2OLMkyGM64RGpERAgSnAJ4iHpasztm7jKhA5/UXPuvmxoh7RACgs67R
5kwxSjQ5Ntvj0eBLZUz3YAQ=
=eJTo
-----END PGP SIGNATURE-----




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

* Re: [PATCH][STABLE] xserver-xorg-conf: provide working setup for BUG 2.0
  2010-03-22 11:03 ` [PATCH][STABLE] xserver-xorg-conf: provide working setup for BUG 2.0 Marcin Juszkiewicz
@ 2010-03-22 12:33   ` Koen Kooi
  0 siblings, 0 replies; 9+ messages in thread
From: Koen Kooi @ 2010-03-22 12:33 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Acked-by: Koen Kooi <koen@openembedded.org>

On 22-03-10 12:03, Marcin Juszkiewicz wrote:
> From: Marcin Juszkiewicz <marcin@buglabs.net>
> 
> Copied from BeagleBoard one.
> 
> Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
> ---
>  recipes/xorg-xserver/xserver-xorg-conf_0.1.bb |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb b/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
> index 617eee6..1be87b1 100644
> --- a/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
> +++ b/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
> @@ -1,5 +1,5 @@
>  DESCRIPTION = "Machine specific xorg.conf files"
> -PR = "r5"
> +PR = "r21"
>  
>  SRC_URI = "file://xorg.conf"
>  

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFLp2OUMkyGM64RGpERAnBEAJ4iRJ7yoaEJf50tMXNtsoI9kLp2WQCfbXQS
BRkASbHeP3YGX5dlN6DYNEQ=
=ZdZv
-----END PGP SIGNATURE-----




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

* Re: [PATCH][STABLE] bug20: initial configuration for BUG 2.0 device
  2010-03-22 11:03 ` [PATCH][STABLE] bug20: initial configuration for BUG 2.0 device Marcin Juszkiewicz
  2010-03-22 12:33   ` Koen Kooi
@ 2010-03-23  1:56   ` Philip Balister
  1 sibling, 0 replies; 9+ messages in thread
From: Philip Balister @ 2010-03-23  1:56 UTC (permalink / raw)
  To: openembedded-devel

Acked-by: Philip Balister <philip@balister.org>

On 03/22/2010 07:03 AM, Marcin Juszkiewicz wrote:
> From: Marcin Juszkiewicz<marcin@buglabs.net>
>
> Currently it is at prototype phase so company internal only.
>
> Kernel recipe will not be added into OE for now.
>
> Signed-off-by: Marcin Juszkiewicz<marcin@juszkiewicz.com.pl>
> ---
>   conf/machine/bug20.conf |   47 +++++++++++++++++++++++++++++++++++++++++++++++
>   1 files changed, 47 insertions(+), 0 deletions(-)
>   create mode 100644 conf/machine/bug20.conf
>
> diff --git a/conf/machine/bug20.conf b/conf/machine/bug20.conf
> new file mode 100644
> index 0000000..dbc1faf
> --- /dev/null
> +++ b/conf/machine/bug20.conf
> @@ -0,0 +1,47 @@
> +#@TYPE: Machine
> +#@NAME: BUG 2.0
> +#@DESCRIPTION: Machine configuration for the BUG 2.0 board (OMAP3530 based)
> +TARGET_ARCH = "arm"
> +
> +PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg"
> +XSERVER = "xserver-xorg \
> +           xserver-xorg-extension-dri \
> +           xserver-xorg-extension-glx \
> +           xf86-input-evdev \
> +           xf86-input-mouse \
> +           xf86-video-omapfb \
> +           xf86-input-keyboard"
> +
> +# Only has DVI connector for external screen
> +GUI_MACHINE_CLASS = "bigscreen"
> +
> +require conf/machine/include/omap3.inc
> +
> +# this kernel is not provided in OE yet
> +PREFERRED_PROVIDER_virtual/kernel = "linux-omap-hah"
> +
> +IMAGE_FSTYPES += "tar.bz2"
> +
> +SERIAL_CONSOLE = "115200 ttyS2"
> +
> +UBOOT_MACHINE = "omap3_bug_config"
> +
> +# do ubiattach /dev/ubi_ctrl -m 4
> +# From dmesg:
> +# UBI: smallest flash I/O unit:    2048
> +# UBI: logical eraseblock size:    129024 bytes
> +# from ubiattach stdout:
> +# UBI device number 0, total 1996 LEBs
> +MKUBIFS_ARGS = "-m 2048 -e 129024 -c 1996"
> +
> +# do ubiattach /dev/ubi_ctrl -m 4
> +# from dmesg:
> +# UBI: smallest flash I/O unit:    2048
> +# UBI: physical eraseblock size:   131072 bytes (128 KiB)
> +# UBI: sub-page size:              512
> +UBINIZE_ARGS = "-m 2048 -p 128KiB -s 512"
> +
> +PREFERRED_VERSION_u-boot = "git"
> +
> +# and sdio
> +MACHINE_FEATURES = "kernel26 screen apm usbgadget usbhost vfat alsa"



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

* Re: [PATCH][STABLE] netbase: add BUG 2.0 support
  2010-03-22 11:03 ` [PATCH][STABLE] netbase: add BUG 2.0 support Marcin Juszkiewicz
  2010-03-22 12:32   ` Koen Kooi
@ 2010-03-23  1:57   ` Philip Balister
  1 sibling, 0 replies; 9+ messages in thread
From: Philip Balister @ 2010-03-23  1:57 UTC (permalink / raw)
  To: openembedded-devel

Acked-by: Philip Balister <philip@balister.org>


On 03/22/2010 07:03 AM, Marcin Juszkiewicz wrote:
> From: Marcin Juszkiewicz<marcin@buglabs.net>
>
> Signed-off-by: Marcin Juszkiewicz<marcin@juszkiewicz.com.pl>
> ---
>   recipes/netbase/netbase/bug20/hosts      |    3 +++
>   recipes/netbase/netbase/bug20/interfaces |   29 +++++++++++++++++++++++++++++
>   recipes/netbase/netbase_4.21.bb          |    2 +-
>   3 files changed, 33 insertions(+), 1 deletions(-)
>   create mode 100644 recipes/netbase/netbase/bug20/hosts
>   create mode 100644 recipes/netbase/netbase/bug20/interfaces
>
> diff --git a/recipes/netbase/netbase/bug20/hosts b/recipes/netbase/netbase/bug20/hosts
> new file mode 100644
> index 0000000..789d660
> --- /dev/null
> +++ b/recipes/netbase/netbase/bug20/hosts
> @@ -0,0 +1,3 @@
> +127.0.0.1	localhost.localdomain		localhost	bug
> +10.10.10.1	bughost
> +
> diff --git a/recipes/netbase/netbase/bug20/interfaces b/recipes/netbase/netbase/bug20/interfaces
> new file mode 100644
> index 0000000..6e5f74e
> --- /dev/null
> +++ b/recipes/netbase/netbase/bug20/interfaces
> @@ -0,0 +1,29 @@
> +# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
> +
> +# The loopback interface
> +auto lo
> +iface lo inet loopback
> +
> +# Ethernet/RNDIS gadget (g_ether)
> +# usbnet and static hwaddr for mac users
> +auto usb0
> +iface usb0 inet static
> +	hwaddress ether A2:80:F4:8A:3C:91
> +	address 10.10.10.10
> +	netmask 255.255.255.0
> +	gateway 10.10.10.1
> +
> +# Wired interface
> +# BUGbase Ethernet which is built into kernel
> +# It is on USB but we rename it by udev rule
> +auto eth0
> +iface eth0 inet dhcp
> +
> +#
> +# wireless interface
> +auto eth1
> +iface eth1 inet dhcp
> +	wireless_mode managed
> +	wireless_essid any
> +	wpa-driver wext
> +	wpa-conf /etc/wpa_supplicant.conf
> diff --git a/recipes/netbase/netbase_4.21.bb b/recipes/netbase/netbase_4.21.bb
> index c8b4d19..04d9623 100644
> --- a/recipes/netbase/netbase_4.21.bb
> +++ b/recipes/netbase/netbase_4.21.bb
> @@ -2,7 +2,7 @@ DESCRIPTION = "This package provides the necessary \
>   infrastructure for basic TCP/IP based networking."
>   SECTION = "base"
>   LICENSE = "GPL"
> -PR = "r37"
> +PR = "r41"
>
>   inherit update-rc.d
>



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

end of thread, other threads:[~2010-03-23  2:00 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-22 11:03 BUG 2.0 support backporting Marcin Juszkiewicz
2010-03-22 11:03 ` [PATCH][STABLE] bug20: initial configuration for BUG 2.0 device Marcin Juszkiewicz
2010-03-22 12:33   ` Koen Kooi
2010-03-23  1:56   ` Philip Balister
2010-03-22 11:03 ` [PATCH][STABLE] netbase: add BUG 2.0 support Marcin Juszkiewicz
2010-03-22 12:32   ` Koen Kooi
2010-03-23  1:57   ` Philip Balister
2010-03-22 11:03 ` [PATCH][STABLE] xserver-xorg-conf: provide working setup for BUG 2.0 Marcin Juszkiewicz
2010-03-22 12:33   ` Koen Kooi

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.