All of lore.kernel.org
 help / color / mirror / Atom feed
* [STABLE][PATCH 1/3] bug: ship SDIO firmware for WiFi
@ 2009-12-01 18:14 Marcin Juszkiewicz
  2009-12-01 18:14 ` [STABLE][PATCH 2/3] xserver-xorg-conf: added BUG support Marcin Juszkiewicz
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Marcin Juszkiewicz @ 2009-12-01 18:14 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Marcin Juszkiewicz

From: Marcin Juszkiewicz <marcin@buglabs.net>

Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
---
 conf/machine/bug.conf |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/conf/machine/bug.conf b/conf/machine/bug.conf
index cec3d5b..3e0389a 100644
--- a/conf/machine/bug.conf
+++ b/conf/machine/bug.conf
@@ -3,7 +3,7 @@
 #@DESCRIPTION: Machine configuration for the BUG base unit.
 TARGET_ARCH = "arm"
 
-MACHINE_EXTRA_RRECOMMENDS = "marvell-gspi-fw"
+MACHINE_EXTRA_RRECOMMENDS = "marvell-gspi-fw marvell-sdio-fw"
 PREFERRED_PROVIDER_virtual/kernel = "linux-bug"
 
 MACHINE_FEATURES = "kernel26 screen touchscreen hotplug alsa wifi usbhost usbgadget"
-- 
1.6.5.2






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

* [STABLE][PATCH 2/3] xserver-xorg-conf: added BUG support
  2009-12-01 18:14 [STABLE][PATCH 1/3] bug: ship SDIO firmware for WiFi Marcin Juszkiewicz
@ 2009-12-01 18:14 ` Marcin Juszkiewicz
  2009-12-02 20:47   ` Denys Dmytriyenko
  2009-12-01 18:14 ` [STABLE][PATCH 3/3] MAINTAINERS: added BUG to my devices Marcin Juszkiewicz
  2009-12-02 20:46 ` [STABLE][PATCH 1/3] bug: ship SDIO firmware for WiFi Denys Dmytriyenko
  2 siblings, 1 reply; 8+ messages in thread
From: Marcin Juszkiewicz @ 2009-12-01 18:14 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Marcin Juszkiewicz

From: Marcin Juszkiewicz <marcin@buglabs.net>

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

diff --git a/recipes/xorg-xserver/xserver-xorg-conf/bug/xorg.conf b/recipes/xorg-xserver/xserver-xorg-conf/bug/xorg.conf
new file mode 100644
index 0000000..8b6cd94
--- /dev/null
+++ b/recipes/xorg-xserver/xserver-xorg-conf/bug/xorg.conf
@@ -0,0 +1,65 @@
+#
+# Initial version of X11 configuration for BugLabs BUG device.
+#
+# Up to 2 LCD modules are supported (as DISPLAY=0.0/0.1).
+# Touchscreen on first screen works properly (req tslib 0.0.6 driver).
+#
+# By default software starts on 0.0 only.
+#
+
+Section "Monitor"
+        Identifier      "Monitor 1"
+EndSection
+
+Section "Monitor"
+        Identifier      "Monitor 2"
+EndSection
+
+Section "Device"
+        Identifier      "fbdev Device 2"
+        Driver  "fbdev"
+	Option "fbdev" "/dev/fb2"
+	Option "shadowfb" "true"
+EndSection
+
+Section "Device"
+        Identifier      "fbdev Device 1"
+        Driver  "fbdev"
+	Option "fbdev" "/dev/fb1"
+	Option "shadowfb" "true"
+EndSection
+
+Section "Screen"
+        Identifier      "fbdev Screen 2"
+        Device  "fbdev Device 2"
+        Monitor "Monitor 2"
+EndSection
+
+Section "Screen"
+        Identifier      "fbdev Screen 1"
+        Device  "fbdev Device 1"
+        Monitor "Monitor 1"
+EndSection
+
+Section "ServerLayout"
+        Identifier      "Layout"
+        Screen  "fbdev Screen 1"
+        Screen  "fbdev Screen 2" Below "fbdev Screen 1"
+	InputDevice "ts4" "CorePointer"
+EndSection
+
+Section "InputDevice"
+    Identifier "ts5"
+    Driver "tslib"
+    Option "Device" "/dev/input/bmi_lcd_ts5"
+EndSection
+
+Section "InputDevice"
+    Identifier "ts4"
+    Driver "tslib"
+    Option "Device" "/dev/input/bmi_lcd_ts4"
+EndSection
+
+Section "ServerFlags"
+	Option "AutoAddDevices" "false"
+EndSection
diff --git a/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb b/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
index 95aa82b..67fc683 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 = "r4"
+PR = "r5"
 
 SRC_URI = "file://xorg.conf"
 
-- 
1.6.5.2






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

* [STABLE][PATCH 3/3] MAINTAINERS: added BUG to my devices
  2009-12-01 18:14 [STABLE][PATCH 1/3] bug: ship SDIO firmware for WiFi Marcin Juszkiewicz
  2009-12-01 18:14 ` [STABLE][PATCH 2/3] xserver-xorg-conf: added BUG support Marcin Juszkiewicz
@ 2009-12-01 18:14 ` Marcin Juszkiewicz
  2009-12-02 20:48   ` Denys Dmytriyenko
  2009-12-02 20:46 ` [STABLE][PATCH 1/3] bug: ship SDIO firmware for WiFi Denys Dmytriyenko
  2 siblings, 1 reply; 8+ messages in thread
From: Marcin Juszkiewicz @ 2009-12-01 18:14 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Marcin Juszkiewicz

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 664 bytes --]

From: Marcin Juszkiewicz <marcin@buglabs.net>

Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
---
 MAINTAINERS |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index c4185ab..c66ebe6 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -160,7 +160,7 @@ Recipes:    mx31ads-kernel*
 Person:     Marcin Juszkiewicz
 Mail:       marcin@juszkiewicz.com.pl
 Website:    http://marcin.juszkiewicz.com.pl/
-Machines:   progear, alix, at91sam9263ek
+Machines:   bug, progear, alix, at91sam9263ek
 Distros:    Poky, Ångström
 
 Person:     Matthias 'CoreDump' Hentges
-- 
1.6.5.2






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

* Re: [STABLE][PATCH 1/3] bug: ship SDIO firmware for WiFi
  2009-12-01 18:14 [STABLE][PATCH 1/3] bug: ship SDIO firmware for WiFi Marcin Juszkiewicz
  2009-12-01 18:14 ` [STABLE][PATCH 2/3] xserver-xorg-conf: added BUG support Marcin Juszkiewicz
  2009-12-01 18:14 ` [STABLE][PATCH 3/3] MAINTAINERS: added BUG to my devices Marcin Juszkiewicz
@ 2009-12-02 20:46 ` Denys Dmytriyenko
  2 siblings, 0 replies; 8+ messages in thread
From: Denys Dmytriyenko @ 2009-12-02 20:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Marcin Juszkiewicz

On Tue, Dec 01, 2009 at 07:14:52PM +0100, Marcin Juszkiewicz wrote:
> From: Marcin Juszkiewicz <marcin@buglabs.net>
> 
> Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>

Acked-by: Denys Dmytriyenko <denis@denix.org>

> ---
>  conf/machine/bug.conf |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/conf/machine/bug.conf b/conf/machine/bug.conf
> index cec3d5b..3e0389a 100644
> --- a/conf/machine/bug.conf
> +++ b/conf/machine/bug.conf
> @@ -3,7 +3,7 @@
>  #@DESCRIPTION: Machine configuration for the BUG base unit.
>  TARGET_ARCH = "arm"
>  
> -MACHINE_EXTRA_RRECOMMENDS = "marvell-gspi-fw"
> +MACHINE_EXTRA_RRECOMMENDS = "marvell-gspi-fw marvell-sdio-fw"
>  PREFERRED_PROVIDER_virtual/kernel = "linux-bug"
>  
>  MACHINE_FEATURES = "kernel26 screen touchscreen hotplug alsa wifi usbhost usbgadget"
> -- 
> 1.6.5.2
> 
> 
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel



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

* Re: [STABLE][PATCH 2/3] xserver-xorg-conf: added BUG support
  2009-12-01 18:14 ` [STABLE][PATCH 2/3] xserver-xorg-conf: added BUG support Marcin Juszkiewicz
@ 2009-12-02 20:47   ` Denys Dmytriyenko
  0 siblings, 0 replies; 8+ messages in thread
From: Denys Dmytriyenko @ 2009-12-02 20:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Marcin Juszkiewicz

On Tue, Dec 01, 2009 at 07:14:53PM +0100, Marcin Juszkiewicz wrote:
> From: Marcin Juszkiewicz <marcin@buglabs.net>
> 
> Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>

Acked-by: Denys Dmytriyenko <denis@denix.org>

> ---
>  .../xorg-xserver/xserver-xorg-conf/bug/xorg.conf   |   65 ++++++++++++++++++++
>  recipes/xorg-xserver/xserver-xorg-conf_0.1.bb      |    2 +-
>  2 files changed, 66 insertions(+), 1 deletions(-)
>  create mode 100644 recipes/xorg-xserver/xserver-xorg-conf/bug/xorg.conf
> 
> diff --git a/recipes/xorg-xserver/xserver-xorg-conf/bug/xorg.conf b/recipes/xorg-xserver/xserver-xorg-conf/bug/xorg.conf
> new file mode 100644
> index 0000000..8b6cd94
> --- /dev/null
> +++ b/recipes/xorg-xserver/xserver-xorg-conf/bug/xorg.conf
> @@ -0,0 +1,65 @@
> +#
> +# Initial version of X11 configuration for BugLabs BUG device.
> +#
> +# Up to 2 LCD modules are supported (as DISPLAY=0.0/0.1).
> +# Touchscreen on first screen works properly (req tslib 0.0.6 driver).
> +#
> +# By default software starts on 0.0 only.
> +#
> +
> +Section "Monitor"
> +        Identifier      "Monitor 1"
> +EndSection
> +
> +Section "Monitor"
> +        Identifier      "Monitor 2"
> +EndSection
> +
> +Section "Device"
> +        Identifier      "fbdev Device 2"
> +        Driver  "fbdev"
> +	Option "fbdev" "/dev/fb2"
> +	Option "shadowfb" "true"
> +EndSection
> +
> +Section "Device"
> +        Identifier      "fbdev Device 1"
> +        Driver  "fbdev"
> +	Option "fbdev" "/dev/fb1"
> +	Option "shadowfb" "true"
> +EndSection
> +
> +Section "Screen"
> +        Identifier      "fbdev Screen 2"
> +        Device  "fbdev Device 2"
> +        Monitor "Monitor 2"
> +EndSection
> +
> +Section "Screen"
> +        Identifier      "fbdev Screen 1"
> +        Device  "fbdev Device 1"
> +        Monitor "Monitor 1"
> +EndSection
> +
> +Section "ServerLayout"
> +        Identifier      "Layout"
> +        Screen  "fbdev Screen 1"
> +        Screen  "fbdev Screen 2" Below "fbdev Screen 1"
> +	InputDevice "ts4" "CorePointer"
> +EndSection
> +
> +Section "InputDevice"
> +    Identifier "ts5"
> +    Driver "tslib"
> +    Option "Device" "/dev/input/bmi_lcd_ts5"
> +EndSection
> +
> +Section "InputDevice"
> +    Identifier "ts4"
> +    Driver "tslib"
> +    Option "Device" "/dev/input/bmi_lcd_ts4"
> +EndSection
> +
> +Section "ServerFlags"
> +	Option "AutoAddDevices" "false"
> +EndSection
> diff --git a/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb b/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
> index 95aa82b..67fc683 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 = "r4"
> +PR = "r5"
>  
>  SRC_URI = "file://xorg.conf"
>  
> -- 
> 1.6.5.2
> 
> 
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel



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

* Re: [STABLE][PATCH 3/3] MAINTAINERS: added BUG to my devices
  2009-12-01 18:14 ` [STABLE][PATCH 3/3] MAINTAINERS: added BUG to my devices Marcin Juszkiewicz
@ 2009-12-02 20:48   ` Denys Dmytriyenko
  0 siblings, 0 replies; 8+ messages in thread
From: Denys Dmytriyenko @ 2009-12-02 20:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Marcin Juszkiewicz

On Tue, Dec 01, 2009 at 07:14:54PM +0100, Marcin Juszkiewicz wrote:
> From: Marcin Juszkiewicz <marcin@buglabs.net>
> 
> Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>

Acked-by: Denys Dmytriyenko <denis@denix.org>

> ---
>  MAINTAINERS |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index c4185ab..c66ebe6 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -160,7 +160,7 @@ Recipes:    mx31ads-kernel*
>  Person:     Marcin Juszkiewicz
>  Mail:       marcin@juszkiewicz.com.pl
>  Website:    http://marcin.juszkiewicz.com.pl/
> -Machines:   progear, alix, at91sam9263ek
> +Machines:   bug, progear, alix, at91sam9263ek
>  Distros:    Poky, ??ngstr??m
>  
>  Person:     Matthias 'CoreDump' Hentges
> -- 
> 1.6.5.2
> 
> 
> 
> 

> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel




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

* Re: [STABLE][PATCH 1/3] bug: ship SDIO firmware for WiFi
  2009-11-23 15:41 ` Marcin Juszkiewicz
@ 2009-11-23 15:50   ` Marc Olzheim
  0 siblings, 0 replies; 8+ messages in thread
From: Marc Olzheim @ 2009-11-23 15:50 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 466 bytes --]

On Mon, Nov 23, 2009 at 04:41:03PM +0100, Marcin Juszkiewicz wrote:
> ping for whole series
> 
> no idea why it is not in patchwork

Well, I do not know when you posted the series, but the message-id in
the In-Reply-To: suggests it would have been posted November 16th. I
do not see them in the mailing list archives, so I suspect they never
arrived. Maybe you could check the mail log on the box you used git
send-email on to find out more... ;-)

Marc

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [STABLE][PATCH 1/3] bug: ship SDIO firmware for WiFi
       [not found] <1258380584-16437-1-git-send-email-marcin@juszkiewicz.com.pl>
@ 2009-11-23 15:41 ` Marcin Juszkiewicz
  2009-11-23 15:50   ` Marc Olzheim
  0 siblings, 1 reply; 8+ messages in thread
From: Marcin Juszkiewicz @ 2009-11-23 15:41 UTC (permalink / raw)
  To: openembedded-devel


ping for whole series

no idea why it is not in patchwork

Regards, 
-- 
JID:      hrw@jabber.org
Website:  http://marcin.juszkiewicz.com.pl/
LinkedIn: http://www.linkedin.com/in/marcinjuszkiewicz





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

end of thread, other threads:[~2009-12-02 21:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-12-01 18:14 [STABLE][PATCH 1/3] bug: ship SDIO firmware for WiFi Marcin Juszkiewicz
2009-12-01 18:14 ` [STABLE][PATCH 2/3] xserver-xorg-conf: added BUG support Marcin Juszkiewicz
2009-12-02 20:47   ` Denys Dmytriyenko
2009-12-01 18:14 ` [STABLE][PATCH 3/3] MAINTAINERS: added BUG to my devices Marcin Juszkiewicz
2009-12-02 20:48   ` Denys Dmytriyenko
2009-12-02 20:46 ` [STABLE][PATCH 1/3] bug: ship SDIO firmware for WiFi Denys Dmytriyenko
     [not found] <1258380584-16437-1-git-send-email-marcin@juszkiewicz.com.pl>
2009-11-23 15:41 ` Marcin Juszkiewicz
2009-11-23 15:50   ` Marc Olzheim

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.