summaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authordsomero <xgizzmo@slackbuilds.org>2011-03-23 23:13:27 -0400
committerRobby Workman <rworkman@slackbuilds.org>2011-03-24 19:23:17 -0500
commit7ce01e67d2b1feebb5d88a1cf54cd333dc37c649 (patch)
tree0fba79494e45240c61a756a8b8666374d778e658 /system
parent05b2edd3e66e88b8d38414d7945bd43c2c48bd6a (diff)
downloadslackbuilds-7ce01e67d2b1feebb5d88a1cf54cd333dc37c649.tar.gz
system/ipheth-driver: Removed this is now part of the kerenl.
http://lkml.org/lkml/2010/4/22/17 Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/ipheth-driver/README14
-rw-r--r--system/ipheth-driver/README.SLACKWARE7
-rw-r--r--system/ipheth-driver/doinst.sh16
-rw-r--r--system/ipheth-driver/ipheth-driver.SlackBuild81
-rw-r--r--system/ipheth-driver/ipheth-driver.info10
-rw-r--r--system/ipheth-driver/ipheth.conf.idevicepair8
-rw-r--r--system/ipheth-driver/ipheth.conf.ipheth-pair7
-rw-r--r--system/ipheth-driver/slack-desc19
8 files changed, 0 insertions, 162 deletions
diff --git a/system/ipheth-driver/README b/system/ipheth-driver/README
deleted file mode 100644
index 7365f2384a..0000000000
--- a/system/ipheth-driver/README
+++ /dev/null
@@ -1,14 +0,0 @@
-This is a Linux Kernel driver that adds support for iPhone tethering through
-USB cables. Unlike other solutions out there, you don't need to jailbreak your
-phone or install third-party proxy applications.
-
-Attention: The ipheth kernel module has been accepted upstream as of Apr 21
-2010 for kernel 2.6.34.
-
-This module is still useful if you're running the stock Slackware kernel or
-the 2.6.33 tree. You still need an iPhone pairing program: this package will
-configure by default a modprobe helper based on ipheth-pair, an optional
-helper based on idevicepair from latest libimobiledevice releases is also
-provided.
-
-This package requires ipheth-pair.
diff --git a/system/ipheth-driver/README.SLACKWARE b/system/ipheth-driver/README.SLACKWARE
deleted file mode 100644
index b27a001567..0000000000
--- a/system/ipheth-driver/README.SLACKWARE
+++ /dev/null
@@ -1,7 +0,0 @@
-By default, this package will install a modprobe configuration which uses
-ipheth-pair as pairing program. Latest libimobiledevice releases ship with a
-copy of idevicepair. An alternate modprobe configuration file for the newer
-program is shipped too in this folder. If you're going to use it, you may also
-want to modify /lib/udev/rules.d/90-iphone-tether.rules and place it in
-/etc/udev/rules.d/90-iphone-tether.rules just keep in mind that this method
-hasn't been fully tested so YMMV :)
diff --git a/system/ipheth-driver/doinst.sh b/system/ipheth-driver/doinst.sh
deleted file mode 100644
index c57f522a1a..0000000000
--- a/system/ipheth-driver/doinst.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-
-config etc/modprobe.d/ipheth.conf.new
-
-chroot . /sbin/depmod -a @KERNEL@
diff --git a/system/ipheth-driver/ipheth-driver.SlackBuild b/system/ipheth-driver/ipheth-driver.SlackBuild
deleted file mode 100644
index 1ce55db281..0000000000
--- a/system/ipheth-driver/ipheth-driver.SlackBuild
+++ /dev/null
@@ -1,81 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for ipheth-driver.
-#
-# Copyright 2010-2011 Marco Bonetti <sid77@slackware.it>
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-PRGNAM=ipheth-driver
-VERSION=${VERSION:-1.0}
-BUILD=${BUILD:-2}
-TAG=${TAG:-_SBo}
-
-KERNEL=${KERNEL:-$(uname -r)}
-PKG_VERS=${VERSION}_$(echo $KERNEL | tr - _)
-
-# Automatically determine the architecture we're building on:
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- # Unless $ARCH is already set, use uname -m for all other archs:
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=${PKG:-$TMP/package-$PRGNAM}
-OUTPUT=${OUTPUT:-/tmp}
-
-DOCS="$CWD/README.SLACKWARE $CWD/ipheth.conf.idevicepair"
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
-cd $PRGNAM-$VERSION
-chown -R root:root .
-find . \
- \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
- -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-make
-
-mkdir -p $PKG/lib/modules/$KERNEL/extra
-install -m 0644 ipheth.ko $PKG/lib/modules/$KERNEL/extra/
-mkdir -p $PKG/etc/modprobe.d/
-install -m 0644 $CWD/ipheth.conf.ipheth-pair $PKG/etc/modprobe.d/ipheth.conf.new
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$PKG_VERS
-install -m 0644 $DOCS $PKG/usr/doc/$PRGNAM-$PKG_VERS
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$PKG_VERS/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-sed "s%@KERNEL@%$KERNEL%" $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$PKG_VERS-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/system/ipheth-driver/ipheth-driver.info b/system/ipheth-driver/ipheth-driver.info
deleted file mode 100644
index d94055d51d..0000000000
--- a/system/ipheth-driver/ipheth-driver.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="ipheth-driver"
-VERSION="1.0"
-HOMEPAGE="http://giagio.com/wiki/moin.cgi/iPhoneEthernetDriver"
-DOWNLOAD="http://sid77.slackware.it/tmp/ipheth-driver-1.0.tar.bz2"
-MD5SUM="cb6a3358da60aa2c94b21ba258aa03a0"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Marco Bonetti"
-EMAIL="sid77@slackware.it"
-APPROVED="dsomero"
diff --git a/system/ipheth-driver/ipheth.conf.idevicepair b/system/ipheth-driver/ipheth.conf.idevicepair
deleted file mode 100644
index 212dc8c3bd..0000000000
--- a/system/ipheth-driver/ipheth.conf.idevicepair
+++ /dev/null
@@ -1,8 +0,0 @@
-# iPhone USB Ethernet Driver
-#
-# This configuration forces modprobe to execute device pairing after loading
-# the driver and device unpairing before removing it.
-
-install ipheth /sbin/modprobe --ignore-install ipheth && /usr/bin/idevicepair pair
-remove ipheth /usr/bin/idevicepair unpair && /sbin/modprobe -r --ignore-remove ipheth
-
diff --git a/system/ipheth-driver/ipheth.conf.ipheth-pair b/system/ipheth-driver/ipheth.conf.ipheth-pair
deleted file mode 100644
index 13f7ffbcae..0000000000
--- a/system/ipheth-driver/ipheth.conf.ipheth-pair
+++ /dev/null
@@ -1,7 +0,0 @@
-# iPhone USB Ethernet Driver
-#
-# This configuration forces modprobe to execute device pairing after loading
-# the driver.
-
-install ipheth /sbin/modprobe --ignore-install ipheth && /lib/udev/ipheth-pair
-
diff --git a/system/ipheth-driver/slack-desc b/system/ipheth-driver/slack-desc
deleted file mode 100644
index 131b43666c..0000000000
--- a/system/ipheth-driver/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description. Line
-# up the first '|' above the ':' following the base package name, and the '|'
-# on the right side marks the last column you can put a character in. You must
-# make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':'.
-
- |-----handy-ruler------------------------------------------------------|
-ipheth-driver: ipheth-driver (iPhone USB Ethernet Driver)
-ipheth-driver:
-ipheth-driver: This is a Linux Kernel driver that adds support for iPhone tethering
-ipheth-driver: through USB cables. Unlike other solutions out there, you don't need
-ipheth-driver: to jailbreak your phone or install third-party proxy applications.
-ipheth-driver:
-ipheth-driver: This driver has been accepted into 2.6.34+ kernels so it's only useful
-ipheth-driver: if you're running on older versions.
-ipheth-driver:
-ipheth-driver: http://giagio.com/wiki/moin.cgi/iPhoneEthernetDriver
-ipheth-driver: