summaryrefslogtreecommitdiffstats
path: root/target/device/valka/target_skeleton/etc/rc.d/10.network
diff options
context:
space:
mode:
authorThomas Petazzoni2010-12-05 21:53:08 +0100
committerPeter Korsgaard2010-12-16 15:04:24 +0100
commit9459f037bf6dd3ee73b6a647cc83b6b98d4c7478 (patch)
treef76a35fe8e8263f295d964a516dfe3b7eb1c7e0f /target/device/valka/target_skeleton/etc/rc.d/10.network
parentboard: remove atstk1005_defconfig (diff)
downloadbuildroot-9459f037bf6dd3ee73b6a647cc83b6b98d4c7478.tar.gz
buildroot-9459f037bf6dd3ee73b6a647cc83b6b98d4c7478.tar.xz
buildroot-9459f037bf6dd3ee73b6a647cc83b6b98d4c7478.zip
board: remove Valka v100sc2
This default configuration did not even build a kernel image, which is the main point of having board default configuration. So remove it. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'target/device/valka/target_skeleton/etc/rc.d/10.network')
-rwxr-xr-xtarget/device/valka/target_skeleton/etc/rc.d/10.network32
1 files changed, 0 insertions, 32 deletions
diff --git a/target/device/valka/target_skeleton/etc/rc.d/10.network b/target/device/valka/target_skeleton/etc/rc.d/10.network
deleted file mode 100755
index ebe092a0e..000000000
--- a/target/device/valka/target_skeleton/etc/rc.d/10.network
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/ash
-. /etc/rc.subr
-
-start() {
- echo -n " * Network interfaces: "
- if checkyesno ${eth0_enable}; then
- if ${ifup_program} eth0 > /dev/null 2>&1; then
- echo -n "eth0 "
- else
- echo -n "eth0=failed "
- fi
- fi
- if checkyesno ${eth1_enable}; then
- if ${ifup_program} eth1 > /dev/null 2>&1; then
- echo -n "eth1"
- else
- echo -n "eth1=failed"
- fi
- fi
- echo ""
-}
-
-stop() {
- echo -n " * Stopping network interfaces: "
- if ${ifdown_program} -fa > /dev/null 2>&1; then
- echo "Ok"
- else
- echo "Failed"
- fi
-}
-
-rc_run_command "$1"