summaryrefslogtreecommitdiff
path: root/target/device/KwikByte/kb9202/target_skeleton/usr/share/udhcpc/default.script
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2010-12-05 21:53:02 +0100
committerPeter Korsgaard <jacmet@sunsite.dk>2010-12-16 14:55:26 +0100
commit630ba981a0b86e0931663191cf6dac5403e7056d (patch)
tree837d049ee70d3238ad463afa49336c5096e091f9 /target/device/KwikByte/kb9202/target_skeleton/usr/share/udhcpc/default.script
parent90965566891ee63baaae6be66e55a12c28ab1b65 (diff)
board: simplify kb9202 board
Minimize the board defconfig, remove custom busybox configuration, custom kernel configuration (use the kernel defconfig instead), custom device table and target skeleton. The only difference in the target skeleton was the support of mdev and the usage of an automount script. Instead of adding this in a board-specific way, we should provide board-independent configuration options. There are already patches contributed to add support for mdev. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'target/device/KwikByte/kb9202/target_skeleton/usr/share/udhcpc/default.script')
-rwxr-xr-xtarget/device/KwikByte/kb9202/target_skeleton/usr/share/udhcpc/default.script40
1 files changed, 0 insertions, 40 deletions
diff --git a/target/device/KwikByte/kb9202/target_skeleton/usr/share/udhcpc/default.script b/target/device/KwikByte/kb9202/target_skeleton/usr/share/udhcpc/default.script
deleted file mode 100755
index 98ebc159f..000000000
--- a/target/device/KwikByte/kb9202/target_skeleton/usr/share/udhcpc/default.script
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-
-# udhcpc script edited by Tim Riker <Tim@Rikers.org>
-
-[ -z "$1" ] && echo "Error: should be called from udhcpc" && exit 1
-
-RESOLV_CONF="/etc/resolv.conf"
-[ -n "$broadcast" ] && BROADCAST="broadcast $broadcast"
-[ -n "$subnet" ] && NETMASK="netmask $subnet"
-
-case "$1" in
- deconfig)
- /sbin/ifconfig $interface 0.0.0.0
- ;;
-
- renew|bound)
- /sbin/ifconfig $interface $ip $BROADCAST $NETMASK
-
- if [ -n "$router" ] ; then
- echo "deleting routers"
- while route del default gw 0.0.0.0 dev $interface ; do
- :
- done
-
- metric=0
- for i in $router ; do
- route add default gw $i dev $interface metric $((metric++))
- done
- fi
-
- echo -n > $RESOLV_CONF
- [ -n "$domain" ] && echo search $domain >> $RESOLV_CONF
- for i in $dns ; do
- echo adding dns $i
- echo nameserver $i >> $RESOLV_CONF
- done
- ;;
-esac
-
-exit 0