diff options
author | John Voltz <john.voltz@gmail.com> | 2008-03-06 18:59:14 +0000 |
---|---|---|
committer | John Voltz <john.voltz@gmail.com> | 2008-03-06 18:59:14 +0000 |
commit | ceaf9e8217f29f6c499d03c62612b2eb50e8ed09 (patch) | |
tree | c0d1c53c52d050672de9c2fc656b760a2fbe5aa1 /target/device/valka/target_skeleton/etc/rc | |
parent | c46893b7af0e6f0bbc072dc76cb979995ff654fc (diff) |
updates and additions for avr32 arch
Diffstat (limited to 'target/device/valka/target_skeleton/etc/rc')
-rwxr-xr-x | target/device/valka/target_skeleton/etc/rc | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/target/device/valka/target_skeleton/etc/rc b/target/device/valka/target_skeleton/etc/rc new file mode 100755 index 000000000..63c7559db --- /dev/null +++ b/target/device/valka/target_skeleton/etc/rc @@ -0,0 +1,27 @@ +#!/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 |