summaryrefslogtreecommitdiffstats
path: root/data/hal-iphone-setup
diff options
context:
space:
mode:
Diffstat (limited to 'data/hal-iphone-setup')
-rwxr-xr-xdata/hal-iphone-setup22
1 files changed, 0 insertions, 22 deletions
diff --git a/data/hal-iphone-setup b/data/hal-iphone-setup
deleted file mode 100755
index a6cffe6..0000000
--- a/data/hal-iphone-setup
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-#
-# borrowed from Fedora and modified to apply device major and minor nodes to the iPhone
-#
-
-hal_set () {
- if [ -n "$2" ]; then
- /usr/bin/hal-set-property --udi "$UDI" --key block.$1 --int "$2"
- else
- /usr/bin/hal-set-property --udi "$UDI" --key block.$1 --remove
- fi
-}
-
-DEVICE_NODE=`hal-get-property --udi "$UDI" --key block.device`
-
-echo $DEVICE_NODE
-
-MAJOR=`stat $DEVICE_NODE --format="%t"`
-MINOR=`stat $DEVICE_NODE --format="%T"`
-
-hal_set major 0x$MAJOR
-hal_set minor 0x$MINOR