aboutsummaryrefslogtreecommitdiff
path: root/repos/core/busybox/udhcpc.run
diff options
context:
space:
mode:
Diffstat (limited to 'repos/core/busybox/udhcpc.run')
-rwxr-xr-xrepos/core/busybox/udhcpc.run14
1 files changed, 0 insertions, 14 deletions
diff --git a/repos/core/busybox/udhcpc.run b/repos/core/busybox/udhcpc.run
deleted file mode 100755
index 5ab07344..00000000
--- a/repos/core/busybox/udhcpc.run
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-exec 2>&1
-[ -f ./conf ] && . ./conf
-if [ ! "$IFACE" ]; then
- for i in /sys/class/net/*; do
- [ -e $i/phy80211 ] && {
- IFACE=${i##*/}
- break
- }
- done
-fi
-[ "$IFACE" ] || exit 1
-ip link set $IFACE up
-exec env DNS="$DNS" udhcpc -f -i $IFACE