diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-12-05 21:53:08 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-12-16 15:04:24 +0100 |
commit | 9459f037bf6dd3ee73b6a647cc83b6b98d4c7478 (patch) | |
tree | f76a35fe8e8263f295d964a516dfe3b7eb1c7e0f /target/device/valka/target_skeleton/etc/rc.d/11.ntpdate | |
parent | c874dea8a2b415f1c8f92e6a653999884bf3fa02 (diff) | |
download | buildroot-novena-9459f037bf6dd3ee73b6a647cc83b6b98d4c7478.tar.gz buildroot-novena-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/11.ntpdate')
-rwxr-xr-x | target/device/valka/target_skeleton/etc/rc.d/11.ntpdate | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/target/device/valka/target_skeleton/etc/rc.d/11.ntpdate b/target/device/valka/target_skeleton/etc/rc.d/11.ntpdate deleted file mode 100755 index 94f2626d1..000000000 --- a/target/device/valka/target_skeleton/etc/rc.d/11.ntpdate +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/ash -. /etc/rc.subr - -start() { - echo -n " * Running ntpdate: " - if [ ! -x ${ntpdate_program} ]; then - log_error "Missing 'ntpdate' program (${ntpdate_program})" - echo "Failed" - return 1 - fi - - if ${ntpdate_program} ${ntpdate_flags} ${ntpdate_servers} > /dev/null 2>&1; then - echo "Ok" - else - echo "Failed" - exit 1 - fi -} - -stop() { - return 0 -} - -rc_run_command "$1" "ntpdate" |