From 9459f037bf6dd3ee73b6a647cc83b6b98d4c7478 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sun, 5 Dec 2010 21:53:08 +0100 Subject: 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 Signed-off-by: Peter Korsgaard --- target/device/valka/target_skeleton/etc/rc | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100755 target/device/valka/target_skeleton/etc/rc (limited to 'target/device/valka/target_skeleton/etc/rc') diff --git a/target/device/valka/target_skeleton/etc/rc b/target/device/valka/target_skeleton/etc/rc deleted file mode 100755 index 63c7559db..000000000 --- a/target/device/valka/target_skeleton/etc/rc +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/ash -. /etc/rc.subr - -echo "Running startup scripts..." -for s in /etc/rc.d/*; do - if [ -x $s ]; then - $s start - fi -done - -### Run other start scripts (the linux init.d type scripts) #### -echo "Running init.d/ startup scripts..." -for s in /etc/init.d/S*; do - if [ -x $s ]; then - $s start - fi -done - -### Run rc.local if it exists ################################## -if [ -x /etc/rc.local ]; then - echo "Running local startup script..." - . /etc/rc.local -fi - -echo -echo "ValkaSys ready" -echo -- cgit v1.2.3