* [Buildroot] [PATCH] Xorg and Tslib
@ 2011-12-23 22:02 Sergio Prado
2011-12-23 22:07 ` Sergio Prado
0 siblings, 1 reply; 10+ messages in thread
From: Sergio Prado @ 2011-12-23 22:02 UTC (permalink / raw)
To: buildroot
Hello guys!
First of all, congratulations for the great work you have been doing
on the Buildroot project!
That's my first message on the group. I have been using Buildroot
professionally for some time now.
Nowadays I have a training company here in Brazil, and guess what I am
using to teach embedded Linux? Buildroot, of course! :)
OK, so now that I have introduced myself, I would like to talk about
about a problem I was having here with X11 and touch screen devices.
I have generated a rootfs with X11 and Matchbox support. Everything
but the touchscreen works fine. I could use the ts_calibrate and
ts_test tools to test the TS device. But when I started X11/Matchbox,
the cursor was not calibrated.
Then I discovered that for X11 to talk directly to TS devices, it
needs the xf86-input-tslib driver. And we don't have it on Buildroot
(as far as I understood, it was developed by the Ubuntu team, not the
xorg team).
I integrated this package to the Buildoot build system, compiled and
tested. Everything is working now.
Here is the patch to include the xf86-input-tslib driver:
---
package/x11r7/Config.in | 1 +
package/x11r7/xdriver_xf86-input-tslib/Config.in | 8 ++++++++
.../xdriver_xf86-input-tslib.mk | 13 +++++++++++++
3 files changed, 22 insertions(+), 0 deletions(-)
create mode 100644 package/x11r7/xdriver_xf86-input-tslib/Config.in
create mode 100644
package/x11r7/xdriver_xf86-input-tslib/xdriver_xf86-input-tslib.mk
diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
index 50816f2..af55939 100644
--- a/package/x11r7/Config.in
+++ b/package/x11r7/Config.in
@@ -176,6 +176,7 @@ endmenu
source package/x11r7/xdriver_xf86-input-synaptics/Config.in
source package/x11r7/xdriver_xf86-input-vmmouse/Config.in
source package/x11r7/xdriver_xf86-input-void/Config.in
+ source package/x11r7/xdriver_xf86-input-tslib/Config.in
source package/x11r7/xdriver_xf86-video-apm/Config.in
source package/x11r7/xdriver_xf86-video-ark/Config.in
source package/x11r7/xdriver_xf86-video-ast/Config.in
diff --git a/package/x11r7/xdriver_xf86-input-tslib/Config.in
b/package/x11r7/xdriver_xf86-input-tslib/Config.in
new file mode 100644
index 0000000..4c3f719
--- /dev/null
+++ b/package/x11r7/xdriver_xf86-input-tslib/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_TSLIB
+ bool "xf86-input-tslib"
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ Touch screen library input driver
diff --git a/package/x11r7/xdriver_xf86-input-tslib/xdriver_xf86-input-tslib.mk
b/package/x11r7/xdriver_xf86-input-tslib/xdriver_xf86-input-tslib.mk
new file mode 100644
index 0000000..b6455e7
--- /dev/null
+++ b/package/x11r7/xdriver_xf86-input-tslib/xdriver_xf86-input-tslib.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# xdriver_xf86-input-tslib -- Touch screen library input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_TSLIB_VERSION = 0.0.6
+XDRIVER_XF86_INPUT_TSLIB_SOURCE =
xf86-input-tslib_$(XDRIVER_XF86_INPUT_TSLIB_VERSION).orig.tar.gz
+XDRIVER_XF86_INPUT_TSLIB_SITE =
http://ftp.de.debian.org/debian/pool/main/x/xf86-input-tslib/
+XDRIVER_XF86_INPUT_TSLIB_AUTORECONF = NO
+XDRIVER_XF86_INPUT_TSLIB_DEPENDENCIES = xproto_inputproto
xserver_xorg-server xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,package/x11r7,xdriver_xf86-input-tslib))
--
1.7.1
--
Sergio Prado
www.sergioprado.org
Twitter @sergioprado
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH] Xorg and Tslib
2011-12-23 22:02 [Buildroot] [PATCH] Xorg and Tslib Sergio Prado
@ 2011-12-23 22:07 ` Sergio Prado
2011-12-23 22:37 ` Michael S. Zick
2011-12-24 9:38 ` Thomas Petazzoni
0 siblings, 2 replies; 10+ messages in thread
From: Sergio Prado @ 2011-12-23 22:07 UTC (permalink / raw)
To: buildroot
Sorry, I forgot to send it in rich text format. Here is the patch again:
---
package/x11r7/Config.in | 1 +
package/x11r7/xdriver_xf86-input-tslib/Config.in | 8 ++++++++
.../xdriver_xf86-input-tslib.mk | 13 +++++++++++++
3 files changed, 22 insertions(+), 0 deletions(-)
create mode 100644 package/x11r7/xdriver_xf86-input-tslib/Config.in
create mode 100644 package/x11r7/xdriver_xf86-input-tslib/
xdriver_xf86-input-tslib.mk
diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
index 50816f2..af55939 100644
--- a/package/x11r7/Config.in
+++ b/package/x11r7/Config.in
@@ -176,6 +176,7 @@ endmenu
source package/x11r7/xdriver_xf86-input-synaptics/Config.in
source package/x11r7/xdriver_xf86-input-vmmouse/Config.in
source package/x11r7/xdriver_xf86-input-void/Config.in
+ source package/x11r7/xdriver_xf86-input-tslib/Config.in
source package/x11r7/xdriver_xf86-video-apm/Config.in
source package/x11r7/xdriver_xf86-video-ark/Config.in
source package/x11r7/xdriver_xf86-video-ast/Config.in
diff --git a/package/x11r7/xdriver_xf86-input-tslib/Config.in
b/package/x11r7/xdriver_xf86-input-tslib/Config.in
new file mode 100644
index 0000000..4c3f719
--- /dev/null
+++ b/package/x11r7/xdriver_xf86-input-tslib/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_TSLIB
+ bool "xf86-input-tslib"
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ Touch screen library input driver
diff --git a/package/x11r7/xdriver_xf86-input-tslib/
xdriver_xf86-input-tslib.mk b/package/x11r7/xdriver_xf86-input-tslib/
xdriver_xf86-input-tslib.mk
new file mode 100644
index 0000000..b6455e7
--- /dev/null
+++ b/package/x11r7/xdriver_xf86-input-tslib/xdriver_xf86-input-tslib.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# xdriver_xf86-input-tslib -- Touch screen library input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_TSLIB_VERSION = 0.0.6
+XDRIVER_XF86_INPUT_TSLIB_SOURCE =
xf86-input-tslib_$(XDRIVER_XF86_INPUT_TSLIB_VERSION).orig.tar.gz
+XDRIVER_XF86_INPUT_TSLIB_SITE =
http://ftp.de.debian.org/debian/pool/main/x/xf86-input-tslib/
+XDRIVER_XF86_INPUT_TSLIB_AUTORECONF = NO
+XDRIVER_XF86_INPUT_TSLIB_DEPENDENCIES = xproto_inputproto
xserver_xorg-server xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,package/x11r7,xdriver_xf86-input-tslib))
--
1.7.1
Sergio Prado
www.sergioprado.org
Twitter @sergioprado
2011/12/23 Sergio Prado <sergiosiena@gmail.com>:
> Hello guys!
>
> First of all, congratulations for the great work you have been doing
> on the Buildroot project!
>
> That's my first message on the group. I have been using Buildroot
> professionally for some time now.
>
> Nowadays I have a training company here in Brazil, and guess what I am
> using to teach embedded Linux? Buildroot, of course! :)
>
> OK, so now that I have introduced myself, I would like to talk about
> about a problem I was having here with X11 and touch screen devices.
>
> I have generated a rootfs with X11 and Matchbox support. Everything
> but the touchscreen works fine. I could use the ts_calibrate and
> ts_test tools to test the TS device. But when I started X11/Matchbox,
> the cursor was not calibrated.
>
> Then I discovered that for X11 to talk directly to TS devices, it
> needs the xf86-input-tslib driver. And we don't have it on Buildroot
> (as far as I understood, it was developed by the Ubuntu team, not the
> xorg team).
>
> I integrated this package to the Buildoot build system, compiled and
> tested. Everything is working now.
>
> Here is the patch to include the xf86-input-tslib driver:
>
> ---
> package/x11r7/Config.in | 1 +
> package/x11r7/xdriver_xf86-input-tslib/Config.in | 8 ++++++++
> .../xdriver_xf86-input-tslib.mk | 13 +++++++++++++
> 3 files changed, 22 insertions(+), 0 deletions(-)
> create mode 100644 package/x11r7/xdriver_xf86-input-tslib/Config.in
> create mode 100644
> package/x11r7/xdriver_xf86-input-tslib/xdriver_xf86-input-tslib.mk
>
> diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
> index 50816f2..af55939 100644
> --- a/package/x11r7/Config.in
> +++ b/package/x11r7/Config.in
> @@ -176,6 +176,7 @@ endmenu
> source package/x11r7/xdriver_xf86-input-synaptics/Config.in
> source package/x11r7/xdriver_xf86-input-vmmouse/Config.in
> source package/x11r7/xdriver_xf86-input-void/Config.in
> + source package/x11r7/xdriver_xf86-input-tslib/Config.in
> source package/x11r7/xdriver_xf86-video-apm/Config.in
> source package/x11r7/xdriver_xf86-video-ark/Config.in
> source package/x11r7/xdriver_xf86-video-ast/Config.in
> diff --git a/package/x11r7/xdriver_xf86-input-tslib/Config.in
> b/package/x11r7/xdriver_xf86-input-tslib/Config.in
> new file mode 100644
> index 0000000..4c3f719
> --- /dev/null
> +++ b/package/x11r7/xdriver_xf86-input-tslib/Config.in
> @@ -0,0 +1,8 @@
> +config BR2_PACKAGE_XDRIVER_XF86_INPUT_TSLIB
> + bool "xf86-input-tslib"
> + select BR2_PACKAGE_XPROTO_INPUTPROTO
> + select BR2_PACKAGE_XSERVER_XORG_SERVER
> + select BR2_PACKAGE_XPROTO_RANDRPROTO
> + select BR2_PACKAGE_XPROTO_XPROTO
> + help
> + Touch screen library input driver
> diff --git a/package/x11r7/xdriver_xf86-input-tslib/
xdriver_xf86-input-tslib.mk
> b/package/x11r7/xdriver_xf86-input-tslib/xdriver_xf86-input-tslib.mk
> new file mode 100644
> index 0000000..b6455e7
> --- /dev/null
> +++ b/package/x11r7/xdriver_xf86-input-tslib/xdriver_xf86-input-tslib.mk
> @@ -0,0 +1,13 @@
>
+################################################################################
> +#
> +# xdriver_xf86-input-tslib -- Touch screen library input driver
> +#
>
+################################################################################
> +
> +XDRIVER_XF86_INPUT_TSLIB_VERSION = 0.0.6
> +XDRIVER_XF86_INPUT_TSLIB_SOURCE =
> xf86-input-tslib_$(XDRIVER_XF86_INPUT_TSLIB_VERSION).orig.tar.gz
> +XDRIVER_XF86_INPUT_TSLIB_SITE =
> http://ftp.de.debian.org/debian/pool/main/x/xf86-input-tslib/
> +XDRIVER_XF86_INPUT_TSLIB_AUTORECONF = NO
> +XDRIVER_XF86_INPUT_TSLIB_DEPENDENCIES = xproto_inputproto
> xserver_xorg-server xproto_randrproto xproto_xproto
> +
> +$(eval $(call AUTOTARGETS,package/x11r7,xdriver_xf86-input-tslib))
> --
> 1.7.1
>
> --
> Sergio Prado
> www.sergioprado.org
> Twitter @sergioprado
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20111223/2062d304/attachment.html>
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH] Xorg and Tslib
2011-12-23 22:07 ` Sergio Prado
@ 2011-12-23 22:37 ` Michael S. Zick
2011-12-24 1:32 ` Sergio Prado
2011-12-24 9:38 ` Thomas Petazzoni
1 sibling, 1 reply; 10+ messages in thread
From: Michael S. Zick @ 2011-12-23 22:37 UTC (permalink / raw)
To: buildroot
On Fri December 23 2011, Sergio Prado wrote:
>
Pardon a small bit of nit-picking...
> Sorry, I forgot to send it in rich text format. Here is the patch again:
>
Plain text works best for patches.
> ---
> package/x11r7/Config.in | 1 +
> package/x11r7/xdriver_xf86-input-tslib/Config.in | 8 ++++++++
> .../xdriver_xf86-input-tslib.mk | 13 +++++++++++++
> 3 files changed, 22 insertions(+), 0 deletions(-)
> create mode 100644 package/x11r7/xdriver_xf86-input-tslib/Config.in
> create mode 100644 package/x11r7/xdriver_xf86-input-tslib/
> xdriver_xf86-input-tslib.mk
>
> diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
> index 50816f2..af55939 100644
> --- a/package/x11r7/Config.in
> +++ b/package/x11r7/Config.in
> @@ -176,6 +176,7 @@ endmenu
> source package/x11r7/xdriver_xf86-input-synaptics/Config.in
> source package/x11r7/xdriver_xf86-input-vmmouse/Config.in
> source package/x11r7/xdriver_xf86-input-void/Config.in
> + source package/x11r7/xdriver_xf86-input-tslib/Config.in
T before V
Mike
> source package/x11r7/xdriver_xf86-video-apm/Config.in
> source package/x11r7/xdriver_xf86-video-ark/Config.in
> source package/x11r7/xdriver_xf86-video-ast/Config.in
> diff --git a/package/x11r7/xdriver_xf86-input-tslib/Config.in
> b/package/x11r7/xdriver_xf86-input-tslib/Config.in
> new file mode 100644
> index 0000000..4c3f719
> --- /dev/null
> +++ b/package/x11r7/xdriver_xf86-input-tslib/Config.in
> @@ -0,0 +1,8 @@
> +config BR2_PACKAGE_XDRIVER_XF86_INPUT_TSLIB
> + bool "xf86-input-tslib"
> + select BR2_PACKAGE_XPROTO_INPUTPROTO
> + select BR2_PACKAGE_XSERVER_XORG_SERVER
> + select BR2_PACKAGE_XPROTO_RANDRPROTO
> + select BR2_PACKAGE_XPROTO_XPROTO
> + help
> + Touch screen library input driver
> diff --git a/package/x11r7/xdriver_xf86-input-tslib/
> xdriver_xf86-input-tslib.mk b/package/x11r7/xdriver_xf86-input-tslib/
> xdriver_xf86-input-tslib.mk
> new file mode 100644
> index 0000000..b6455e7
> --- /dev/null
> +++ b/package/x11r7/xdriver_xf86-input-tslib/xdriver_xf86-input-tslib.mk
> @@ -0,0 +1,13 @@
> +################################################################################
> +#
> +# xdriver_xf86-input-tslib -- Touch screen library input driver
> +#
> +################################################################################
> +
> +XDRIVER_XF86_INPUT_TSLIB_VERSION = 0.0.6
> +XDRIVER_XF86_INPUT_TSLIB_SOURCE =
> xf86-input-tslib_$(XDRIVER_XF86_INPUT_TSLIB_VERSION).orig.tar.gz
> +XDRIVER_XF86_INPUT_TSLIB_SITE =
> http://ftp.de.debian.org/debian/pool/main/x/xf86-input-tslib/
> +XDRIVER_XF86_INPUT_TSLIB_AUTORECONF = NO
> +XDRIVER_XF86_INPUT_TSLIB_DEPENDENCIES = xproto_inputproto
> xserver_xorg-server xproto_randrproto xproto_xproto
> +
> +$(eval $(call AUTOTARGETS,package/x11r7,xdriver_xf86-input-tslib))
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH] Xorg and Tslib
2011-12-23 22:37 ` Michael S. Zick
@ 2011-12-24 1:32 ` Sergio Prado
0 siblings, 0 replies; 10+ messages in thread
From: Sergio Prado @ 2011-12-24 1:32 UTC (permalink / raw)
To: buildroot
Thanks for the feedback Michael.
I totally agree that plain text is much better for patches. The problem is
that Gmail wraps lines somewhere around 80 characters, as you can see from
my first email, and the patch gets all messed up.
I search everywhere in the Gmail configuration and Google forums, and I did
not find a way (yet) to disable it.
Anyway, here is the patch again, with the change you suggest:
---
package/x11r7/Config.in | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
index 50816f2..664226f 100644
--- a/package/x11r7/Config.in
+++ b/package/x11r7/Config.in
@@ -174,6 +174,7 @@ endmenu
source package/x11r7/xdriver_xf86-input-keyboard/Config.in
source package/x11r7/xdriver_xf86-input-mouse/Config.in
source package/x11r7/xdriver_xf86-input-synaptics/Config.in
+ source package/x11r7/xdriver_xf86-input-tslib/Config.in
source package/x11r7/xdriver_xf86-input-vmmouse/Config.in
source package/x11r7/xdriver_xf86-input-void/Config.in
source package/x11r7/xdriver_xf86-video-apm/Config.in
--
1.7.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH] Xorg and Tslib
2011-12-23 22:07 ` Sergio Prado
2011-12-23 22:37 ` Michael S. Zick
@ 2011-12-24 9:38 ` Thomas Petazzoni
2011-12-24 9:50 ` [Buildroot] Thank You Stephan Hoffmann
1 sibling, 1 reply; 10+ messages in thread
From: Thomas Petazzoni @ 2011-12-24 9:38 UTC (permalink / raw)
To: buildroot
Hello,
Le Fri, 23 Dec 2011 20:07:21 -0200,
Sergio Prado <sergiosiena@gmail.com> a ?crit :
> Sorry, I forgot to send it in rich text format. Here is the patch again:
Please don't include "personal" messages before the "---". Everything
which is placed before this "---" marker ends up inside the commit
message which is stored forever in the Git history.
Moreover, you should add a Signed-off-by: line to your patch. Some
further comments below.
> +++ b/package/x11r7/xdriver_xf86-input-tslib/Config.in
> @@ -0,0 +1,8 @@
> +config BR2_PACKAGE_XDRIVER_XF86_INPUT_TSLIB
> + bool "xf86-input-tslib"
> + select BR2_PACKAGE_XPROTO_INPUTPROTO
> + select BR2_PACKAGE_XSERVER_XORG_SERVER
> + select BR2_PACKAGE_XPROTO_RANDRPROTO
> + select BR2_PACKAGE_XPROTO_XPROTO
> + help
> + Touch screen library input driver
Indentation broken here, but it was correct in your first patch. Since
your patch is also word-wrapped, I'd recommend either to fix your
e-mail client, or better, to use "git send-email" to send your patches
(this way you're sure that your e-mail client will not do evil things
with the patches).
> +XDRIVER_XF86_INPUT_TSLIB_VERSION = 0.0.6
> +XDRIVER_XF86_INPUT_TSLIB_SOURCE =
> xf86-input-tslib_$(XDRIVER_XF86_INPUT_TSLIB_VERSION).orig.tar.gz
> +XDRIVER_XF86_INPUT_TSLIB_SITE =
> http://ftp.de.debian.org/debian/pool/main/x/xf86-input-tslib/
Instead of Debian, could you use the upstream version available at
http://www.ptxdist.org/software/xf86-input-tslib/download/ ?
> +XDRIVER_XF86_INPUT_TSLIB_AUTORECONF = NO
Not needed, this is the default.
> +$(eval $(call AUTOTARGETS,package/x11r7,xdriver_xf86-input-tslib))
Since Buildroot 2011.11, this line should be simply:
$(eval $(call AUTOTARGETS))
Regards,
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] Thank You
2011-12-24 9:38 ` Thomas Petazzoni
@ 2011-12-24 9:50 ` Stephan Hoffmann
2011-12-24 9:54 ` Bryan Hundven
2011-12-24 10:19 ` Thomas Petazzoni
0 siblings, 2 replies; 10+ messages in thread
From: Stephan Hoffmann @ 2011-12-24 9:50 UTC (permalink / raw)
To: buildroot
Hello all,
I'd like to thank all contributors for this great piece of work they
made for all of us!
Have a happy Christmas and a great, successful new year!
Stephan
--
reLinux - Stephan Hoffmann
Am Schmidtgrund 124 50765 K?ln
Tel. +49.221.95595-19 Fax: -64
www.reLinux.de sho at reLinux.de
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] Thank You
2011-12-24 9:50 ` [Buildroot] Thank You Stephan Hoffmann
@ 2011-12-24 9:54 ` Bryan Hundven
2011-12-24 10:19 ` Thomas Petazzoni
1 sibling, 0 replies; 10+ messages in thread
From: Bryan Hundven @ 2011-12-24 9:54 UTC (permalink / raw)
To: buildroot
On Sat, Dec 24, 2011 at 1:50 AM, Stephan Hoffmann <sho@relinux.de> wrote:
> I'd like to thank all contributors for this great piece of work they
> made for all of us!
>
> Have a happy Christmas and a great, successful new year!
+1
You guys have done outstanding work to buildroot!
To excellent times with family and friends, and to 2012!
Cheers,
Bryan Hundven
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] Thank You
2011-12-24 9:50 ` [Buildroot] Thank You Stephan Hoffmann
2011-12-24 9:54 ` Bryan Hundven
@ 2011-12-24 10:19 ` Thomas Petazzoni
2011-12-24 14:41 ` Thomas De Schampheleire
1 sibling, 1 reply; 10+ messages in thread
From: Thomas Petazzoni @ 2011-12-24 10:19 UTC (permalink / raw)
To: buildroot
Le Sat, 24 Dec 2011 10:50:58 +0100,
Stephan Hoffmann <sho@relinux.de> a ?crit :
> I'd like to thank all contributors for this great piece of work they
> made for all of us!
Thanks! Merry Christmas to everyone!
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] Thank You
2011-12-24 10:19 ` Thomas Petazzoni
@ 2011-12-24 14:41 ` Thomas De Schampheleire
2011-12-24 19:08 ` Yegor Yefremov
0 siblings, 1 reply; 10+ messages in thread
From: Thomas De Schampheleire @ 2011-12-24 14:41 UTC (permalink / raw)
To: buildroot
On Sat, Dec 24, 2011 at 11:19 AM, Thomas Petazzoni <
thomas.petazzoni@free-electrons.com> wrote:
> Le Sat, 24 Dec 2011 10:50:58 +0100,
> Stephan Hoffmann <sho@relinux.de> a ?crit :
>
> > I'd like to thank all contributors for this great piece of work they
> > made for all of us!
>
> Thanks! Merry Christmas to everyone!
>
The same from me, Merry Christmas and a great 2012 for all of you!
Although I haven't followed buildroot for that long, I have the impression
that quite some infrastructure improvements were made this year. Several
new download methods were added, including support for development source
trees; a cmake infrastructure was created next to gentargets and
autotargets; the board support was completely reworked; there have been
quite some changes on the toolchain part; linux and the bootloaders now use
gentargets as well; and the documentation was converted to asciidoc.
Looking at these achievements, I'm looking forward to seeing the changes in
2012!
All the best,
Thomas
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20111224/7b7499df/attachment.html>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] Thank You
2011-12-24 14:41 ` Thomas De Schampheleire
@ 2011-12-24 19:08 ` Yegor Yefremov
0 siblings, 0 replies; 10+ messages in thread
From: Yegor Yefremov @ 2011-12-24 19:08 UTC (permalink / raw)
To: buildroot
On Sat, Dec 24, 2011 at 3:41 PM, Thomas De Schampheleire
<patrickdepinguin+buildroot@gmail.com> wrote:
> On Sat, Dec 24, 2011 at 11:19 AM, Thomas Petazzoni
> <thomas.petazzoni@free-electrons.com> wrote:
>>
>> Le Sat, 24 Dec 2011 10:50:58 +0100,
>> Stephan Hoffmann <sho@relinux.de> a ?crit :
>>
>> > I'd like to thank all contributors for this great piece of work they
>> > made for all of us!
>>
>> Thanks! Merry Christmas to everyone!
>
>
> The same from me, Merry Christmas and a great 2012 for all of you!
>
> Although I haven't followed buildroot for that long, I have the impression
> that quite some infrastructure improvements were made this year. Several new
> download methods were added, including support for development source trees;
> a cmake infrastructure was created next to gentargets and autotargets; the
> board support was completely reworked; there have been quite some changes on
> the toolchain part; linux and the bootloaders now use gentargets as well;
> and the documentation was converted to asciidoc.
>
> Looking at these achievements, I'm looking forward to seeing the changes in
> 2012!
Merry Christmas and Happy New Year from me too!
There were really a lot of improvements in BR this year. I hope next
year will bring even more. Let's make it real.
Yegor
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2011-12-24 19:08 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-23 22:02 [Buildroot] [PATCH] Xorg and Tslib Sergio Prado
2011-12-23 22:07 ` Sergio Prado
2011-12-23 22:37 ` Michael S. Zick
2011-12-24 1:32 ` Sergio Prado
2011-12-24 9:38 ` Thomas Petazzoni
2011-12-24 9:50 ` [Buildroot] Thank You Stephan Hoffmann
2011-12-24 9:54 ` Bryan Hundven
2011-12-24 10:19 ` Thomas Petazzoni
2011-12-24 14:41 ` Thomas De Schampheleire
2011-12-24 19:08 ` Yegor Yefremov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox