summaryrefslogtreecommitdiffstats
path: root/rules/rootfs_configfiles.in
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2006-11-26 07:20:06 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2006-11-26 07:20:06 +0000
commit0bab0306bb0c1cfa01ed5e7855dccdbfb71e4311 (patch)
tree09bf231f80dccdc0ff9d069205efb2671c7d32cc /rules/rootfs_configfiles.in
parentcf64b255a6e7e44fbdc6f8fa1cdbf3ce502703d6 (diff)
downloadptxdist-0bab0306bb0c1cfa01ed5e7855dccdbfb71e4311.tar.gz
ptxdist-0bab0306bb0c1cfa01ed5e7855dccdbfb71e4311.tar.xz
* dbus: rest of the config fixes; patch by Roland Hostettler
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@6375 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/rootfs_configfiles.in')
-rw-r--r--rules/rootfs_configfiles.in70
1 files changed, 70 insertions, 0 deletions
diff --git a/rules/rootfs_configfiles.in b/rules/rootfs_configfiles.in
index 3bcfe56cf..6cbd67792 100644
--- a/rules/rootfs_configfiles.in
+++ b/rules/rootfs_configfiles.in
@@ -603,4 +603,74 @@ config ROOTFS_USERS_CROND_CONF
Install /var/spool/cron/crontabs/root from projectroot/crond/root and
/etc/cron/daily from projectroot/crond/daily
+#
+# /etc/dbus-1/system.conf
+#
+menuconfig ROOTFS_DBUS_SYSTEM_CONF
+ depends on ROOTFS
+ depends on DBUS
+ bool
+ prompt "/etc/dbus-1/system.conf "
+ default y
+ help
+ Installs a /etc/dbus-1/system.conf file from a selectable source.
+
+ choice
+ prompt "Kind of /etc/dbus-1/system.conf"
+ depends on ROOTFS_DBUS_SYSTEM_CONF
+ default ROOTFS_GENERIC_DBUS_SYSTEM_CONF
+
+ config ROOTFS_GENERIC_DBUS_SYSTEM_CONF
+ bool
+ prompt "Use generic"
+ help
+ This uses the generic configuration file for your dbus which is
+ shipped with the sources. This configuration is likely to fail
+ because it is thought for a desktop PC.
+
+ config ROOTFS_USER_DBUS_SYSTEM_CONF
+ bool
+ prompt "User defined"
+ help
+ This uses a user defined /etc/dbus-1/system.conf. PTXdist
+ uses file projectroot/etc/dbus-1/system.conf in your local
+ project.
+
+ endchoice
+
+#
+# /etc/dbus-1/session.conf
+#
+menuconfig ROOTFS_DBUS_SESSION_CONF
+ depends on ROOTFS
+ depends on DBUS
+ bool
+ prompt "/etc/dbus-1/session.conf "
+ default y
+ help
+ Installs a /etc/dbus-1/session.conf file from a selectable source.
+
+ choice
+ prompt "Kind of /etc/dbus-1/system.conf"
+ depends on ROOTFS_DBUS_SESSION_CONF
+ default ROOTFS_GENERIC_DBUS_SESSION_CONF
+
+ config ROOTFS_GENERIC_DBUS_SESSION_CONF
+ bool
+ prompt "Use generic"
+ help
+ This uses the generic configuration file for your dbus which is
+ shipped with the sources. This configuration is likely to fail
+ because it is thought for a desktop PC.
+
+ config ROOTFS_USER_DBUS_SESSION_CONF
+ bool
+ prompt "User defined"
+ help
+ This uses a user defined /etc/dbus-1/session.conf. PTXdist
+ uses file projectroot/etc/dbus-1/session.conf in your local
+ project.
+
+ endchoice
+
endmenu