diff options
Diffstat (limited to 'scripts/create_dev')
-rwxr-xr-x | scripts/create_dev | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/scripts/create_dev b/scripts/create_dev deleted file mode 100755 index f3054793..00000000 --- a/scripts/create_dev +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Create Bluetooth devices in /dev -# - -VHCI_MAJOR=10 -VHCI_MINOR=250 - -RFCOMM_MAJOR=216 - -# -# Create device for VHCI -# -if [ ! -c /dev/vhci ]; then - mknod /dev/vhci c ${VHCI_MAJOR} ${VHCI_MINOR} - chmod 664 /dev/vhci -fi - -# -# Create devices for RFCOMM -# -for i in `seq 0 255` -do - if [ ! -c /dev/rfcomm$i ]; then - mknod -m 666 /dev/rfcomm$i c ${RFCOMM_MAJOR} $i - fi -done |