All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [pull request] Pull request for branch for-2012.05/package-fixes
@ 2012-04-18 11:29 Maxime Ripard
  2012-04-18 11:29 ` [Buildroot] [PATCH 1/3] Fix systemd failure with lock files Maxime Ripard
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Maxime Ripard @ 2012-04-18 11:29 UTC (permalink / raw)
  To: buildroot

The following changes since commit e5ece0d8eebf2f908b952141130664d3a6430f67:

  Add apr-package (2012-04-17 16:44:19 +0200)

are available in the git repository at:
  git://git.free-electrons.com/users/maxime-ripard/buildroot.git for-2012.05/package-fixes

Maxime Ripard (3):
      Fix systemd failure with lock files
      Fix systemd failure with media devices
      Fix qt samples dependency on QtGUI

 fs/skeleton/etc/group      |    1 +
 package/qt/Config.in       |    1 +
 package/systemd/systemd.mk |    5 +++++
 3 files changed, 7 insertions(+), 0 deletions(-)

Thanks,
-- 
Maxime Ripard

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

* [Buildroot] [PATCH 1/3] Fix systemd failure with lock files
  2012-04-18 11:29 [Buildroot] [pull request] Pull request for branch for-2012.05/package-fixes Maxime Ripard
@ 2012-04-18 11:29 ` Maxime Ripard
  2012-04-19 13:48   ` Peter Korsgaard
  2012-04-18 11:29 ` [Buildroot] [PATCH 2/3] Fix systemd failure with media devices Maxime Ripard
  2012-04-18 11:29 ` [Buildroot] [PATCH 3/3] Fix qt samples dependency on QtGUI Maxime Ripard
  2 siblings, 1 reply; 9+ messages in thread
From: Maxime Ripard @ 2012-04-18 11:29 UTC (permalink / raw)
  To: buildroot

Systemd introduced a new policy described here:
http://lists.freedesktop.org/archives/systemd-devel/2011-March/001823.html

Add the "lock" group to buildroot to allow systemd to set this in place
at boot time

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
---
 fs/skeleton/etc/group |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/fs/skeleton/etc/group b/fs/skeleton/etc/group
index 311a455..cd4ca79 100644
--- a/fs/skeleton/etc/group
+++ b/fs/skeleton/etc/group
@@ -9,6 +9,7 @@ wheel:x:10:root
 audio:x:29:
 utmp:x:43:
 staff:x:50:
+lock:x:54:
 haldaemon:x:68:
 dbus:x:81:
 netdev:x:82:
-- 
1.7.5.4

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

* [Buildroot] [PATCH 2/3] Fix systemd failure with media devices
  2012-04-18 11:29 [Buildroot] [pull request] Pull request for branch for-2012.05/package-fixes Maxime Ripard
  2012-04-18 11:29 ` [Buildroot] [PATCH 1/3] Fix systemd failure with lock files Maxime Ripard
@ 2012-04-18 11:29 ` Maxime Ripard
  2012-04-19 20:35   ` Peter Korsgaard
  2012-04-18 11:29 ` [Buildroot] [PATCH 3/3] Fix qt samples dependency on QtGUI Maxime Ripard
  2 siblings, 1 reply; 9+ messages in thread
From: Maxime Ripard @ 2012-04-18 11:29 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
---
 package/systemd/systemd.mk |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/package/systemd/systemd.mk b/package/systemd/systemd.mk
index 717bdcc..83800c5 100644
--- a/package/systemd/systemd.mk
+++ b/package/systemd/systemd.mk
@@ -64,8 +64,13 @@ define SYSTEMD_INSTALL_TTY_HOOK
 	ln -fs ../../../../usr/lib/systemd/system/serial-getty at .service $(TARGET_DIR)/etc/systemd/system/getty.target.wants/serial-getty@$(BR2_TARGET_GENERIC_GETTY_PORT).service
 endef
 
+define SYSTEMD_INSTALL_MISC
+	mkdir -p $(TARGET_DIR)/media
+endef
+
 SYSTEMD_POST_INSTALL_TARGET_HOOKS += \
 	SYSTEMD_INSTALL_INIT_HOOK \
 	SYSTEMD_INSTALL_TTY_HOOK \
+	SYSTEMD_INSTALL_MISC \
 
 $(eval $(call AUTOTARGETS))
-- 
1.7.5.4

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

* [Buildroot] [PATCH 3/3] Fix qt samples dependency on QtGUI
  2012-04-18 11:29 [Buildroot] [pull request] Pull request for branch for-2012.05/package-fixes Maxime Ripard
  2012-04-18 11:29 ` [Buildroot] [PATCH 1/3] Fix systemd failure with lock files Maxime Ripard
  2012-04-18 11:29 ` [Buildroot] [PATCH 2/3] Fix systemd failure with media devices Maxime Ripard
@ 2012-04-18 11:29 ` Maxime Ripard
  2012-04-19 13:49   ` Peter Korsgaard
  2 siblings, 1 reply; 9+ messages in thread
From: Maxime Ripard @ 2012-04-18 11:29 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
---
 package/qt/Config.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/package/qt/Config.in b/package/qt/Config.in
index 1ce6348..88855d2 100644
--- a/package/qt/Config.in
+++ b/package/qt/Config.in
@@ -19,6 +19,7 @@ config BR2_PACKAGE_QT_DEBUG
 
 config BR2_PACKAGE_QT_DEMOS
 	bool "Compile and install demos and examples (with code)"
+	select BR2_PACKAGE_QT_GUI_MODULE
 	help
 	  If unsure, say N.
 
-- 
1.7.5.4

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

* [Buildroot] [PATCH 1/3] Fix systemd failure with lock files
  2012-04-18 11:29 ` [Buildroot] [PATCH 1/3] Fix systemd failure with lock files Maxime Ripard
@ 2012-04-19 13:48   ` Peter Korsgaard
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2012-04-19 13:48 UTC (permalink / raw)
  To: buildroot

>>>>> "Maxime" == Maxime Ripard <maxime.ripard@free-electrons.com> writes:

 Maxime> Systemd introduced a new policy described here:
 Maxime> http://lists.freedesktop.org/archives/systemd-devel/2011-March/001823.html

 Maxime> Add the "lock" group to buildroot to allow systemd to set this
 Maxime> in place at boot time

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 3/3] Fix qt samples dependency on QtGUI
  2012-04-18 11:29 ` [Buildroot] [PATCH 3/3] Fix qt samples dependency on QtGUI Maxime Ripard
@ 2012-04-19 13:49   ` Peter Korsgaard
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2012-04-19 13:49 UTC (permalink / raw)
  To: buildroot

>>>>> "Maxime" == Maxime Ripard <maxime.ripard@free-electrons.com> writes:

 Maxime> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/3] Fix systemd failure with media devices
  2012-04-18 11:29 ` [Buildroot] [PATCH 2/3] Fix systemd failure with media devices Maxime Ripard
@ 2012-04-19 20:35   ` Peter Korsgaard
  2012-04-20 14:00     ` [Buildroot] [PATCH] " Maxime Ripard
  0 siblings, 1 reply; 9+ messages in thread
From: Peter Korsgaard @ 2012-04-19 20:35 UTC (permalink / raw)
  To: buildroot

>>>>> "Maxime" == Maxime Ripard <maxime.ripard@free-electrons.com> writes:

 Maxime> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
 Maxime> ---
 Maxime>  package/systemd/systemd.mk |    5 +++++
 Maxime>  1 files changed, 5 insertions(+), 0 deletions(-)

 Maxime> diff --git a/package/systemd/systemd.mk b/package/systemd/systemd.mk
 Maxime> index 717bdcc..83800c5 100644
 Maxime> --- a/package/systemd/systemd.mk
 Maxime> +++ b/package/systemd/systemd.mk
 Maxime> @@ -64,8 +64,13 @@ define SYSTEMD_INSTALL_TTY_HOOK
 Maxime>  	ln -fs ../../../../usr/lib/systemd/system/serial-getty at .service $(TARGET_DIR)/etc/systemd/system/getty.target.wants/serial-getty@$(BR2_TARGET_GENERIC_GETTY_PORT).service
 Maxime>  endef
 
 Maxime> +define SYSTEMD_INSTALL_MISC
 Maxime> +	mkdir -p $(TARGET_DIR)/media
 Maxime> +endef

Why not just add that directory to the default skeleton instead like we
recently did for /run?

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] Fix systemd failure with media devices
  2012-04-19 20:35   ` Peter Korsgaard
@ 2012-04-20 14:00     ` Maxime Ripard
  2012-04-20 15:03       ` Peter Korsgaard
  0 siblings, 1 reply; 9+ messages in thread
From: Maxime Ripard @ 2012-04-20 14:00 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
---
 0 files changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 fs/skeleton/media/.empty

diff --git a/fs/skeleton/media/.empty b/fs/skeleton/media/.empty
new file mode 100644
index 0000000..e69de29
-- 
1.7.5.4

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

* [Buildroot] [PATCH] Fix systemd failure with media devices
  2012-04-20 14:00     ` [Buildroot] [PATCH] " Maxime Ripard
@ 2012-04-20 15:03       ` Peter Korsgaard
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2012-04-20 15:03 UTC (permalink / raw)
  To: buildroot

>>>>> "Maxime" == Maxime Ripard <maxime.ripard@free-electrons.com> writes:

 Maxime> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2012-04-20 15:03 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-18 11:29 [Buildroot] [pull request] Pull request for branch for-2012.05/package-fixes Maxime Ripard
2012-04-18 11:29 ` [Buildroot] [PATCH 1/3] Fix systemd failure with lock files Maxime Ripard
2012-04-19 13:48   ` Peter Korsgaard
2012-04-18 11:29 ` [Buildroot] [PATCH 2/3] Fix systemd failure with media devices Maxime Ripard
2012-04-19 20:35   ` Peter Korsgaard
2012-04-20 14:00     ` [Buildroot] [PATCH] " Maxime Ripard
2012-04-20 15:03       ` Peter Korsgaard
2012-04-18 11:29 ` [Buildroot] [PATCH 3/3] Fix qt samples dependency on QtGUI Maxime Ripard
2012-04-19 13:49   ` Peter Korsgaard

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.