diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-11-05 17:17:19 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-11-05 17:17:19 +0100 |
commit | ad6880eef71d01101c2b216a5462dd9ae116542c (patch) | |
tree | 693dbbb3871b3dea9d38d74ca655ceefdc6d349d /package/bluez/files | |
parent | 4fcc7439fb4e203f510e133a21e1bf9150b79368 (diff) |
fix some bluetooth packaging bugs
Diffstat (limited to 'package/bluez/files')
-rw-r--r-- | package/bluez/files/bluetooth.conf | 31 | ||||
-rw-r--r-- | package/bluez/files/main.conf | 52 |
2 files changed, 83 insertions, 0 deletions
diff --git a/package/bluez/files/bluetooth.conf b/package/bluez/files/bluetooth.conf new file mode 100644 index 000000000..796354692 --- /dev/null +++ b/package/bluez/files/bluetooth.conf @@ -0,0 +1,31 @@ +<!-- This configuration file specifies the required security policies + for Bluetooth core daemon to work. --> + +<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" + "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> +<busconfig> + + <!-- ../system.conf have denied everything, so we just punch some holes --> + + <policy user="root"> + <allow own="org.bluez"/> + <allow send_destination="org.bluez"/> + <allow send_interface="org.bluez.Agent"/> + </policy> + + <policy at_console="true"> + <allow send_destination="org.bluez"/> + </policy> + + <!-- allow users of lp group (printing subsystem) to + communicate with bluetoothd + <policy group="lp"> + <allow send_destination="org.bluez"/> + </policy> + --> + + <policy context="default"> + <deny send_destination="org.bluez"/> + </policy> + +</busconfig> diff --git a/package/bluez/files/main.conf b/package/bluez/files/main.conf new file mode 100644 index 000000000..bf3d9f3d3 --- /dev/null +++ b/package/bluez/files/main.conf @@ -0,0 +1,52 @@ +[General] + +# List of plugins that should not be loaded on bluetoothd startup +DisablePlugins = network,input,audio + +# Default adaper name +# %h - substituted for hostname +# %d - substituted for adapter id +Name = %h-%d + +# Default device class. Only the major and minor device class bits are +# considered. +Class = 0x000100 + +# How long to stay in discoverable mode before going back to non-discoverable +# The value is in seconds. Default is 180, i.e. 3 minutes. +# 0 = disable timer, i.e. stay discoverable forever +DiscoverableTimeout = 0 + +# How long to stay in pairable mode before going back to non-discoverable +# The value is in seconds. Default is 0. +# 0 = disable timer, i.e. stay pairable forever +PairableTimeout = 0 + +# Use some other page timeout than the controller default one +# which is 16384 (10 seconds). +PageTimeout = 8192 + +# Discover scheduler interval used in Adapter.DiscoverDevices +# The value is in seconds. Defaults is 0 to use controller scheduler. +DiscoverSchedulerInterval = 0 + +# What value should be assumed for the adapter Powered property when +# SetProperty(Powered, ...) hasn't been called yet. Defaults to true +InitiallyPowered = true + +# Remember the previously stored Powered state when initializing adapters +RememberPowered = true + +# Use vendor, product and version information for DID profile support. +# The values are separated by ":" and VID, PID and version. +#DeviceID = 1234:5678:abcd + +# Do reverse service discovery for previously unknown devices that connect to +# us. This option is really only needed for qualification since the BITE tester +# doesn't like us doing reverse SDP for some test cases (though there could in +# theory be other useful purposes for this too). Defaults to true. +ReverseServiceDiscovery = true + +# Enable name resolving after inquiry. Set it to 'false' if you don't need +# remote devices name and want shorter discovery cycle. Defaults to 'true'. +NameResolving = true |