Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] Create X symlink for TinyX
@ 2010-11-04  8:58 Paulius Zaleckas
  2010-11-04  8:58 ` [Buildroot] [PATCH 2/2] Bump xinit to 1.2.1 Paulius Zaleckas
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Paulius Zaleckas @ 2010-11-04  8:58 UTC (permalink / raw)
  To: buildroot

When installing TinyX to target create /usr/bin/X symlink
to Xfbdev as it is the only TinyX driver we build.
This makes utils like startx happy :)

Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
---

 .../xserver_xorg-server/xserver_xorg-server.mk     |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/package/x11r7/xserver_xorg-server/xserver_xorg-server.mk b/package/x11r7/xserver_xorg-server/xserver_xorg-server.mk
index d9ea570..7fc2a8a 100644
--- a/package/x11r7/xserver_xorg-server/xserver_xorg-server.mk
+++ b/package/x11r7/xserver_xorg-server/xserver_xorg-server.mk
@@ -74,6 +74,10 @@ endif
 ifeq ($(BR2_PACKAGE_XSERVER_tinyx),y)
 XSERVER_XORG_SERVER_CONF_OPT += --enable-kdrive --enable-xfbdev \
 		--disable-glx --disable-dri --disable-xsdl
+define XSERVER_CREATE_X_SYMLINK
+ ln -f -s Xfbdev $(TARGET_DIR)/usr/bin/X
+endef
+XSERVER_XORG_SERVER_POST_INSTALL_TARGET_HOOKS += XSERVER_CREATE_X_SYMLINK
 else
 XSERVER_XORG_SERVER_CONF_OPT += --disable-kdrive --disable-xfbdev
 endif

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

* [Buildroot] [PATCH 2/2] Bump xinit to 1.2.1
  2010-11-04  8:58 [Buildroot] [PATCH 1/2] Create X symlink for TinyX Paulius Zaleckas
@ 2010-11-04  8:58 ` Paulius Zaleckas
  2010-11-04 13:50   ` Thomas Petazzoni
  2010-11-05  9:28   ` Peter Korsgaard
  2010-11-04 13:50 ` [Buildroot] [PATCH 1/2] Create X symlink for TinyX Thomas Petazzoni
  2010-11-05  9:27 ` Peter Korsgaard
  2 siblings, 2 replies; 6+ messages in thread
From: Paulius Zaleckas @ 2010-11-04  8:58 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
---

 package/x11r7/xapp_xinit/xapp_xinit.mk |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/package/x11r7/xapp_xinit/xapp_xinit.mk b/package/x11r7/xapp_xinit/xapp_xinit.mk
index 40f68ec..52105c2 100644
--- a/package/x11r7/xapp_xinit/xapp_xinit.mk
+++ b/package/x11r7/xapp_xinit/xapp_xinit.mk
@@ -4,10 +4,9 @@
 #
 ################################################################################
 
-XAPP_XINIT_VERSION = 1.0.5
+XAPP_XINIT_VERSION = 1.2.1
 XAPP_XINIT_SOURCE = xinit-$(XAPP_XINIT_VERSION).tar.bz2
 XAPP_XINIT_SITE = http://xorg.freedesktop.org/releases/individual/app
-XAPP_XINIT_AUTORECONF = NO
 XAPP_XINIT_DEPENDENCIES = xapp_xauth xlib_libX11
 
 $(eval $(call AUTOTARGETS,package/x11r7,xapp_xinit))

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

* [Buildroot] [PATCH 1/2] Create X symlink for TinyX
  2010-11-04  8:58 [Buildroot] [PATCH 1/2] Create X symlink for TinyX Paulius Zaleckas
  2010-11-04  8:58 ` [Buildroot] [PATCH 2/2] Bump xinit to 1.2.1 Paulius Zaleckas
@ 2010-11-04 13:50 ` Thomas Petazzoni
  2010-11-05  9:27 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2010-11-04 13:50 UTC (permalink / raw)
  To: buildroot

On Thu, 04 Nov 2010 10:58:33 +0200
Paulius Zaleckas <paulius.zaleckas@gmail.com> wrote:

> When installing TinyX to target create /usr/bin/X symlink
> to Xfbdev as it is the only TinyX driver we build.
> This makes utils like startx happy :)
> 
> Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>

Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-- 
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] 6+ messages in thread

* [Buildroot] [PATCH 2/2] Bump xinit to 1.2.1
  2010-11-04  8:58 ` [Buildroot] [PATCH 2/2] Bump xinit to 1.2.1 Paulius Zaleckas
@ 2010-11-04 13:50   ` Thomas Petazzoni
  2010-11-05  9:28   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2010-11-04 13:50 UTC (permalink / raw)
  To: buildroot

On Thu, 04 Nov 2010 10:58:39 +0200
Paulius Zaleckas <paulius.zaleckas@gmail.com> wrote:

> Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>

Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-- 
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] 6+ messages in thread

* [Buildroot] [PATCH 1/2] Create X symlink for TinyX
  2010-11-04  8:58 [Buildroot] [PATCH 1/2] Create X symlink for TinyX Paulius Zaleckas
  2010-11-04  8:58 ` [Buildroot] [PATCH 2/2] Bump xinit to 1.2.1 Paulius Zaleckas
  2010-11-04 13:50 ` [Buildroot] [PATCH 1/2] Create X symlink for TinyX Thomas Petazzoni
@ 2010-11-05  9:27 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2010-11-05  9:27 UTC (permalink / raw)
  To: buildroot

>>>>> "Paulius" == Paulius Zaleckas <paulius.zaleckas@gmail.com> writes:

 Paulius> When installing TinyX to target create /usr/bin/X symlink
 Paulius> to Xfbdev as it is the only TinyX driver we build.
 Paulius> This makes utils like startx happy :)

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] Bump xinit to 1.2.1
  2010-11-04  8:58 ` [Buildroot] [PATCH 2/2] Bump xinit to 1.2.1 Paulius Zaleckas
  2010-11-04 13:50   ` Thomas Petazzoni
@ 2010-11-05  9:28   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2010-11-05  9:28 UTC (permalink / raw)
  To: buildroot

>>>>> "Paulius" == Paulius Zaleckas <paulius.zaleckas@gmail.com> writes:

 Paulius> Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2010-11-05  9:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-04  8:58 [Buildroot] [PATCH 1/2] Create X symlink for TinyX Paulius Zaleckas
2010-11-04  8:58 ` [Buildroot] [PATCH 2/2] Bump xinit to 1.2.1 Paulius Zaleckas
2010-11-04 13:50   ` Thomas Petazzoni
2010-11-05  9:28   ` Peter Korsgaard
2010-11-04 13:50 ` [Buildroot] [PATCH 1/2] Create X symlink for TinyX Thomas Petazzoni
2010-11-05  9:27 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox