summaryrefslogtreecommitdiff
path: root/target/device/valka/target_skeleton/etc/rc.d/06.modules
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2010-12-05 21:53:08 +0100
committerPeter Korsgaard <jacmet@sunsite.dk>2010-12-16 15:04:24 +0100
commit9459f037bf6dd3ee73b6a647cc83b6b98d4c7478 (patch)
treef76a35fe8e8263f295d964a516dfe3b7eb1c7e0f /target/device/valka/target_skeleton/etc/rc.d/06.modules
parentc874dea8a2b415f1c8f92e6a653999884bf3fa02 (diff)
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/06.modules')
-rwxr-xr-xtarget/device/valka/target_skeleton/etc/rc.d/06.modules31
1 files changed, 0 insertions, 31 deletions
diff --git a/target/device/valka/target_skeleton/etc/rc.d/06.modules b/target/device/valka/target_skeleton/etc/rc.d/06.modules
deleted file mode 100755
index af800d4d3..000000000
--- a/target/device/valka/target_skeleton/etc/rc.d/06.modules
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/ash
-. /etc/rc.subr
-
-start() {
- if checkyesno ${modules_enable}; then
- if [ ! -x "${modprobe_program}" -o ! -f "/etc/modules" ]; then
- echo "Missing 'modprobe_program' program (${modprobe_program})"
- exit 1
- else
- echo
- fi
-
- echo -n "Loading modules: "
- grep '^[^#]' "/etc/modules" | \
- while read module args; do
- [ "$module" ] || continue
- if ${modprobe_program} $module $args; then
- echo -n "$module "
- else
- echo -n "$module=failed "
- fi
- done
- echo ""
- fi
-}
-
-stop() {
- return 0
-}
-
-rc_run_command "$1"