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.d/crond | 27 ---------------------- 1 file changed, 27 deletions(-) delete mode 100755 target/device/valka/target_skeleton/etc/rc.d/crond (limited to 'target/device/valka/target_skeleton/etc/rc.d/crond') diff --git a/target/device/valka/target_skeleton/etc/rc.d/crond b/target/device/valka/target_skeleton/etc/rc.d/crond deleted file mode 100755 index ef1b7fee0..000000000 --- a/target/device/valka/target_skeleton/etc/rc.d/crond +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/ash -. /etc/rc.subr - -start() { - echo -n " * Starting crond: " - if [ ! -x ${crond_program} ]; then - log_error "Missing 'crond' program (${crond_program})" - echo "Failed" - return 1 - fi - - ${crond_program} -f -c ${crond_dir} ${crond_flags} & - pid=$! - if [ "$?" -eq 0 ]; then - echo "${pid}" > ${crond_pidfile} - echo "Ok" - else - echo "Failed" - fi -} - -stop() { - echo " * Stopping crond..." - killpid ${crond_pidfile} -} - -rc_run_command "$1" "crond" -- cgit v1.2.3