diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-12-06 04:30:19 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-12-06 04:30:19 +0000 |
commit | c930dbf89b0bb825fb000b0c3e7a411701ffe2c4 (patch) | |
tree | 4daf8a06983b129b4d7e5e28e0686ab9ed6d1de7 /sources/target_skeleton/etc/init.d | |
parent | 03c53f24c23ef7b06ffcdb0cbaf0a1bb9446fbb7 (diff) | |
download | buildroot-novena-c930dbf89b0bb825fb000b0c3e7a411701ffe2c4.tar.gz buildroot-novena-c930dbf89b0bb825fb000b0c3e7a411701ffe2c4.zip |
Some updates...
Diffstat (limited to 'sources/target_skeleton/etc/init.d')
-rwxr-xr-x | sources/target_skeleton/etc/init.d/S01mount | 16 | ||||
-rwxr-xr-x | sources/target_skeleton/etc/init.d/S15modules | 5 | ||||
-rwxr-xr-x | sources/target_skeleton/etc/init.d/S20syslogd | 6 | ||||
-rwxr-xr-x | sources/target_skeleton/etc/init.d/S50networking | 7 |
4 files changed, 0 insertions, 34 deletions
diff --git a/sources/target_skeleton/etc/init.d/S01mount b/sources/target_skeleton/etc/init.d/S01mount deleted file mode 100755 index 45d0e7bca..000000000 --- a/sources/target_skeleton/etc/init.d/S01mount +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -# Mount all filesystems. We don't mess with -# fsck, since we don't need it here... - -echo -n "Mounting local file systems: " -/bin/mount / -o remount,rw > /dev/null 2>&1 -/bin/mount -a > /dev/null 2>&1 -if [ $? = 0 ] ; then - echo "ok" -else - echo "failed" -fi - -exit 0 - diff --git a/sources/target_skeleton/etc/init.d/S15modules b/sources/target_skeleton/etc/init.d/S15modules deleted file mode 100755 index 4ede82d67..000000000 --- a/sources/target_skeleton/etc/init.d/S15modules +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -if [ -f /proc/sys/kernel/modprobe ] ; then - echo "/bin/true" >/proc/sys/kernel/modprobe -fi -#/sbin/insmod foo diff --git a/sources/target_skeleton/etc/init.d/S20syslogd b/sources/target_skeleton/etc/init.d/S20syslogd deleted file mode 100755 index e3b0e7de4..000000000 --- a/sources/target_skeleton/etc/init.d/S20syslogd +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -echo -n "Starting system log daemon: " -# start syslogging -/sbin/syslogd -m 0 -echo "ok" diff --git a/sources/target_skeleton/etc/init.d/S50networking b/sources/target_skeleton/etc/init.d/S50networking deleted file mode 100755 index db60359f9..000000000 --- a/sources/target_skeleton/etc/init.d/S50networking +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -# start lo all the time -ifconfig lo 127.0.0.1 up -route add -net 127.0.0.0 netmask 255.0.0.0 lo - -hostname -F /etc/hostname |