From a65a9369f45358fefd253da7fcc2dc2869785009 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 9 Mar 2005 08:35:06 +0000 Subject: Add board support for the AMD DBAu1500 development board --- .../AMD/DBAu1500/target_skeleton/etc/init.d/rcS | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 target/device/AMD/DBAu1500/target_skeleton/etc/init.d/rcS (limited to 'target/device/AMD/DBAu1500/target_skeleton/etc/init.d/rcS') diff --git a/target/device/AMD/DBAu1500/target_skeleton/etc/init.d/rcS b/target/device/AMD/DBAu1500/target_skeleton/etc/init.d/rcS new file mode 100755 index 000000000..de411534d --- /dev/null +++ b/target/device/AMD/DBAu1500/target_skeleton/etc/init.d/rcS @@ -0,0 +1,27 @@ +#!/bin/sh + + +# Start all init scripts in /etc/init.d +# executing them in numerical order. +# +for i in /etc/init.d/S??* ;do + + # Ignore dangling symlinks (if any). + [ ! -f "$i" ] && continue + + case "$i" in + *.sh) + # Source shell script for speed. + ( + trap - INT QUIT TSTP + set start + . $i + ) + ;; + *) + # No sh extension, so fork subprocess. + $i start + ;; + esac +done + -- cgit v1.2.3