[packages] bluez-utils: Add configuration and init scripts for hci serial devices
authorHamish Guthrie <hcg@openwrt.org>
Tue, 10 Aug 2010 08:36:08 +0000 (08:36 +0000)
committerHamish Guthrie <hcg@openwrt.org>
Tue, 10 Aug 2010 08:36:08 +0000 (08:36 +0000)
SVN-Revision: 22573

utils/bluez-utils/files/bluetooth.conf
utils/bluez-utils/files/bluez-utils.init

index dad576e9d49f4ab2a2feae0c9e115b8387a4e2ee..42f390c670aa2b2b0a4fad168fc7f9e042a83eca 100644 (file)
@@ -2,6 +2,14 @@ config hcid
 #      option config   /etc/bluetooth/hcid.conf
        option enabled  1
 
 #      option config   /etc/bluetooth/hcid.conf
        option enabled  1
 
+config hciattach
+       option initspeed        115200
+       option tty      ttyS1
+       option type     csr
+       option speed    115200
+       option flow     noflow
+       option enabled  0
+
 config rfcomm
 #      option config   /etc/bluetooth/rfcomm.conf
        option enabled  0
 config rfcomm
 #      option config   /etc/bluetooth/rfcomm.conf
        option enabled  0
index 13dadeee97d65263ff2f8dbf049d7db9851eb1cc..0b326280bfd694697cbbe04917fc690ba8665dd1 100644 (file)
@@ -17,8 +17,9 @@ append_string() {
        local section="$1"
        local option="$2"
        local value="$3"
        local section="$1"
        local option="$2"
        local value="$3"
+       local default="$4"
        local _val
        local _val
-       config_get _val "$section" "$option"
+       config_get _val "$section" "$option" "$default"
        [ -n "$_val" ] && append args "$3 $_val"
 }
 
        [ -n "$_val" ] && append args "$3 $_val"
 }
 
@@ -31,6 +32,18 @@ hcid_config() {
        [ "$enabled" -gt 0 ] && /usr/sbin/hcid $args
 }
 
        [ "$enabled" -gt 0 ] && /usr/sbin/hcid $args
 }
 
+hciattach_config() {
+       local cfg="$1"
+       args=""
+       append_string "$cfg" initspeed "-s" "115200"
+       append_string "$cfg" tty " " "ttyS1"
+       append_string "$cfg" type " " "csr"
+       append_string "$cfg" speed " " "115200"
+       append_string "$cfg" flow " " "noflow"
+       config_get_bool enabled "$cfg" "enabled" '1'
+       [ "$enabled" -gt 0 ] && /usr/sbin/hciattach $args
+}
+
 rfcomm_config() {
        local cfg="$1"
        args=""
 rfcomm_config() {
        local cfg="$1"
        args=""
@@ -101,6 +114,7 @@ start() {
        config_load bluetooth
 
        config_foreach hcid_config hcid
        config_load bluetooth
 
        config_foreach hcid_config hcid
+       config_foreach hciattach_config hciattach
        config_foreach rfcomm_config rfcomm
        config_foreach dund_config dund
        config_foreach pand_config pand
        config_foreach rfcomm_config rfcomm
        config_foreach dund_config dund
        config_foreach pand_config pand
@@ -110,5 +124,6 @@ stop() {
        killall dund
        killall pand
        /usr/bin/rfcomm release all
        killall dund
        killall pand
        /usr/bin/rfcomm release all
+       killall hciattach
        killall hcid
 }
        killall hcid
 }