aboutsummaryrefslogtreecommitdiffstats
path: root/target/default/target_skeleton/sbin
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2005-07-17 22:52:59 +0000
committerFelix Fietkau <nbd@openwrt.org>2005-07-17 22:52:59 +0000
commit6a0c7478207d03871e433e554829e6157897f326 (patch)
tree2b6844c3bb5831e464ea4625441fd91543579b32 /target/default/target_skeleton/sbin
parentef69b8d26a7c4250ed183cc2e1df394c0ef62282 (diff)
downloadupstream-6a0c7478207d03871e433e554829e6157897f326.tar.gz
upstream-6a0c7478207d03871e433e554829e6157897f326.tar.bz2
upstream-6a0c7478207d03871e433e554829e6157897f326.zip
move target/default/target_skeleton into package/base-files, put all the default files in ipkg packages, cleanup some junk in toolchain/, toolchain/ no longer changes build_mipsel/root
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1494 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/default/target_skeleton/sbin')
-rwxr-xr-xtarget/default/target_skeleton/sbin/backup32
-rwxr-xr-xtarget/default/target_skeleton/sbin/halt3
-rwxr-xr-xtarget/default/target_skeleton/sbin/hotplug6
-rwxr-xr-xtarget/default/target_skeleton/sbin/ifdown9
-rwxr-xr-xtarget/default/target_skeleton/sbin/ifup59
-rwxr-xr-xtarget/default/target_skeleton/sbin/mount_root25
-rwxr-xr-xtarget/default/target_skeleton/sbin/restore71
7 files changed, 0 insertions, 205 deletions
diff --git a/target/default/target_skeleton/sbin/backup b/target/default/target_skeleton/sbin/backup
deleted file mode 100755
index 33bad53501..0000000000
--- a/target/default/target_skeleton/sbin/backup
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-for param in $*; do
- case "$param" in
- *)
- OUTPUT_FILE="$param"
- ;;
- esac
-done
-
-if [ "$OUTPUT_FILE" = "-" ]; then
- echo "Writing backup to stdout.." >&2
-elif [ "$OUTPUT_FILE" = "" ]; then
- echo "No output file."
- exit 1
-else
- echo "Writing backup to $OUTPUT_FILE" >&2
- exec > "$OUTPUT_FILE"
-fi
-
-echo __FILELIST__
-find /etc -type f > /tmp/.wlbackup_files
-cat /tmp/.wlbackup_files
-
-echo __IPKG__
-cat /etc/ipkg.conf
-
-echo __PACKAGES__
-grep '^Package:' /usr/lib/ipkg/status | cut -d' ' -f2
-
-echo __FILES__
-tar -T /tmp/.wlbackup_files -cz 2>/dev/null
-rm -f /tmp/.wlbackup_files
diff --git a/target/default/target_skeleton/sbin/halt b/target/default/target_skeleton/sbin/halt
deleted file mode 100755
index 39eed2612e..0000000000
--- a/target/default/target_skeleton/sbin/halt
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-/usr/bin/killall5 -9
-#umount -ar
diff --git a/target/default/target_skeleton/sbin/hotplug b/target/default/target_skeleton/sbin/hotplug
deleted file mode 100755
index 74134e848a..0000000000
--- a/target/default/target_skeleton/sbin/hotplug
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/ash
-# $Id$
-[ "${INTERFACE%%[0-9]*}" = "wds" ] && {
- ifconfig $INTERFACE 0.0.0.0 up
- /usr/sbin/brctl addif br0 $INTERFACE
-}
diff --git a/target/default/target_skeleton/sbin/ifdown b/target/default/target_skeleton/sbin/ifdown
deleted file mode 100755
index 6b255cc1b8..0000000000
--- a/target/default/target_skeleton/sbin/ifdown
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/ash
-[ $# = 0 ] && { echo " $0 <group>"; exit; }
-. /etc/functions.sh
-type=$1
-debug "### ifdown $type ###"
-if=$(nvram get ${type}_ifname)
-if_valid $if || exit
-$DEBUG ifconfig $if down
-kill $(cat /var/run/${if}.pid 2>&-) 2>&-
diff --git a/target/default/target_skeleton/sbin/ifup b/target/default/target_skeleton/sbin/ifup
deleted file mode 100755
index 3d81364d08..0000000000
--- a/target/default/target_skeleton/sbin/ifup
+++ /dev/null
@@ -1,59 +0,0 @@
-#!/bin/ash
-[ $# = 0 ] && { echo " $0 <group>"; exit; }
-. /etc/functions.sh
-type=$1
-debug "### ifup $type ###"
-
-if_proto=$(nvram get ${type}_proto)
-if=$(nvram get ${type}_ifname)
-[ "${if%%[0-9]}" = "ppp" ] && if=$(nvram get ${if_proto}_ifname)
-
-if_valid $if || exit
-mac=$(nvram get ${type}_hwaddr)
-$DEBUG ifconfig $if down 2>&-
-
-if [ "${if%%[0-9]}" = "br" ]; then
- stp=$(nvram get ${type}_stp)
- $DEBUG brctl delbr $if 2>&-
- $DEBUG brctl addbr $if
- $DEBUG brctl setfd $if 0
- $DEBUG brctl stp $if ${stp:-0}
-
- for sif in $(nvram get ${type}_ifnames); do
- if_valid $sif || continue
- ${mac:+$DEBUG ifconfig $sif down hw ether $mac}
- $DEBUG ifconfig $sif 0.0.0.0 up
- $DEBUG brctl addif $if $sif
- done
-else
- ${mac:+$DEBUG ifconfig $if down hw ether $mac}
-fi
-
-case "$if_proto" in
- static)
- ip=$(nvram get ${type}_ipaddr)
- netmask=$(nvram get ${type}_netmask)
- gateway=$(nvram get ${type}_gateway)
-
- $DEBUG ifconfig $if $ip ${netmask:+netmask $netmask} broadcast + up
- ${gateway:+$DEBUG route add default gw $gateway}
-
- [ -f /etc/resolv.conf ] && return
-
- debug "# --- creating /etc/resolv.conf ---"
- for dns in $(nvram get ${type}_dns); do
- echo "nameserver $dns" >> /etc/resolv.conf
- done
- ;;
- dhcp)
- ip=$(nvram get ${type}_ipaddr)
- [ -f $pidfile ] && $DEBUG kill $(cat $pidfile)
- ${DEBUG:-eval} "udhcpc -R -i $if ${ip:+-r $ip} -b -p $pidfile &"
- ;;
- none|"")
- ;;
- *)
- [ -x "/sbin/ifup.${if_proto}" ] && { $DEBUG /sbin/ifup.${if_proto} $*; exit; }
- echo "### ifup $type: ignored ${type}_proto=\"$if_proto\" (not supported)"
- ;;
-esac
diff --git a/target/default/target_skeleton/sbin/mount_root b/target/default/target_skeleton/sbin/mount_root
deleted file mode 100755
index b4ec2ca563..0000000000
--- a/target/default/target_skeleton/sbin/mount_root
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-if [ "$1" != "failsafe" ]; then
- mount | grep jffs2 >&-
- if [ $? = 0 ] ; then
- if [ $(cat /proc/mtd | wc -l) = 6 ]; then
- echo 5 > /proc/sys/diag
- mtd unlock linux
- mtd erase OpenWrt
- jffs2root --move
- else
- mtd unlock rootfs
- mount -o remount,rw /dev/root /
- fi
- else
- mtd unlock OpenWrt
- mount -t jffs2 /dev/mtdblock/4 /jffs
- pivot_root /jffs /jffs/rom
- mount none /proc -t proc
- mount none /dev -t devfs
- umount /rom/proc rom/dev >&-
- fi
-fi
-mount none /tmp -t tmpfs -o nosuid,nodev,mode=1777,size=50%
-mkdir -p /dev/pts
-mount none /dev/pts -t devpts
diff --git a/target/default/target_skeleton/sbin/restore b/target/default/target_skeleton/sbin/restore
deleted file mode 100755
index 6b5876cc14..0000000000
--- a/target/default/target_skeleton/sbin/restore
+++ /dev/null
@@ -1,71 +0,0 @@
-#!/bin/sh
-for param in $*; do
- case "$param" in
- *)
- INPUT_FILE="$param"
- esac
-done
-
-if [ "$INPUT_FILE" = "-" ]; then
- echo "Reading backup from stdin..." >&2
-elif [ "$INPUT_FILE" = "" ]; then
- echo "No input file."
-else
- echo "Reading backup from $INPUT_FILE" >&2
- exec < "$INPUT_FILE"
-fi
-
-process_line () {
- case "$SECTION" in
- ipkg)
- echo "$line" >> /etc/ipkg.conf
- ;;
- nvram)
- echo nvram set "$line"
- ;;
- package)
- if grep "^Package: $line" /usr/lib/ipkg/status 2>&1 > /dev/null; then
- echo Package "$line" already installed.
- else
- ipkg install "$line"
- fi
- ;;
- file)
- rm -f "$line"
- ;;
- esac
-}
-
-while true; do
- read line
- case "$line" in
- __IPKG__)
- SECTION=ipkg
- echo "Restoring /etc/ipkg.conf"
- rm -f /etc/ipkg.conf
- ;;
- __NVRAM__)
- SECTION=nvram
- echo "Restoring nvram"
- ;;
- __PACKAGES__)
- SECTION=package
- echo "Restoring packages"
- ipkg update
- ;;
- __FILELIST__)
- SECTION=file
- echo "Deleting old files"
- ;;
- __FILES__)
- echo "Restoring /etc"
- tar -C / -xvz
- echo "Restore complete."
- exit 0
- ;;
- *)
- process_line;
- ;;
- esac
-done
-