[Buildroot] [git commit] fluxbox: add xsession profile

Peter Korsgaard jacmet at sunsite.dk
Wed Dec 7 20:11:57 UTC 2011


commit: http://git.buildroot.net/buildroot/commit/?id=b87f2942f0ab9e8ee003cac08a172d2a51a3535f
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

add .xsession profile to get fluxbox being started automatically
by XDM.

[Peter: Only install if not available in skeleton, use install -D,
	Make it an executable script and don't hide it]
Signed-off-by: Yegor Yefremov <yegorslists at googlemail.com>
Signed-off-by: Peter Korsgaard <jacmet at sunsite.dk>
---
 package/fluxbox/fluxbox.mk |    7 +++++++
 package/fluxbox/xsession   |    2 ++
 2 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/package/fluxbox/fluxbox.mk b/package/fluxbox/fluxbox.mk
index 85a8eae..5a123f0 100644
--- a/package/fluxbox/fluxbox.mk
+++ b/package/fluxbox/fluxbox.mk
@@ -13,4 +13,11 @@ FLUXBOX_CONF_OPT = --x-includes=$(STAGING_DIR)/usr/include/X11 \
 
 FLUXBOX_DEPENDENCIES = xlib_libX11 $(if $(BR2_PACKAGE_LIBICONV),libiconv)
 
+define FLUXBOX_INSTALL_XSESSION_FILE
+	[ -f $(TARGET_DIR)/root/.xsession ] || $(INSTALL) -m 0755 -D \
+		package/fluxbox/xsession $(TARGET_DIR)/root/.xsession
+endef
+
+FLUXBOX_POST_INSTALL_TARGET_HOOKS += FLUXBOX_INSTALL_XSESSION_FILE
+
 $(eval $(call AUTOTARGETS))
diff --git a/package/fluxbox/xsession b/package/fluxbox/xsession
new file mode 100644
index 0000000..b51acff
--- /dev/null
+++ b/package/fluxbox/xsession
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec startfluxbox


More information about the buildroot mailing list