diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-04-26 11:45:55 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-04-26 11:45:55 +0000 |
commit | 08782ae7d8812933ad3f932132955ea1c0fb1e52 (patch) | |
tree | 1808993dc06e0c9a473c2e77236ce5d31039466d /sources/target_skeleton/etc/init.d | |
parent | 057adc1c84e0082cdf88da23a32bf2098680ff4e (diff) |
Major rework
Diffstat (limited to 'sources/target_skeleton/etc/init.d')
-rwxr-xr-x | sources/target_skeleton/etc/init.d/S05ramdisk1 | 51 | ||||
-rwxr-xr-x | sources/target_skeleton/etc/init.d/S20syslogd | 8 | ||||
-rwxr-xr-x | sources/target_skeleton/etc/init.d/S50hostname | 3 | ||||
-rwxr-xr-x | sources/target_skeleton/etc/init.d/S50networking | 7 |
4 files changed, 7 insertions, 62 deletions
diff --git a/sources/target_skeleton/etc/init.d/S05ramdisk1 b/sources/target_skeleton/etc/init.d/S05ramdisk1 deleted file mode 100755 index b8a6d70ad..000000000 --- a/sources/target_skeleton/etc/init.d/S05ramdisk1 +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh - -# Build a ramdisk to overlay on /dev so we can scribble on it -# all we want without needing rw access to the underlying filesystem - -SIZE=140 -INODES=1000 - -echo -n "Building device ramdisk: " - -/bin/umount /dev/ram1 >/dev/null 2>&1 - -/bin/dd if=/dev/zero of=/dev/ram1 bs=1k count=$SIZE >/dev/null 2>&1 -if [ $? != 0 ] ; then - echo "failed." - exit 1; -fi - -/sbin/mkfs.minix -n30 -i$INODES /dev/ram1 $SIZE >/dev/null 2>&1 -if [ $? != 0 ] ; then - echo "failed." - exit 1; -fi - -/bin/mount /dev/ram1 /mnt -t minix -o rw >/dev/null 2>&1 -if [ $? != 0 ] ; then - echo "failed." - exit 1; -fi - -/bin/cp -a /dev/* /mnt >/dev/null 2>&1 -if [ $? != 0 ] ; then - echo "failed." - exit 1; -fi - -/bin/umount /mnt >/dev/null 2>&1 -if [ $? != 0 ] ; then - echo "failed." - exit 1; -fi - -/bin/mount /dev/ram1 /dev -t minix -o rw >/dev/null 2>&1 -if [ $? != 0 ] ; then - echo "failed." - exit 1; -else - echo "done." -fi - -exit 0 diff --git a/sources/target_skeleton/etc/init.d/S20syslogd b/sources/target_skeleton/etc/init.d/S20syslogd deleted file mode 100755 index a88a6ff07..000000000 --- a/sources/target_skeleton/etc/init.d/S20syslogd +++ /dev/null @@ -1,8 +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/S50hostname b/sources/target_skeleton/etc/init.d/S50hostname deleted file mode 100755 index 7437bc2de..000000000 --- a/sources/target_skeleton/etc/init.d/S50hostname +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -hostname tester.dev.null diff --git a/sources/target_skeleton/etc/init.d/S50networking b/sources/target_skeleton/etc/init.d/S50networking new file mode 100755 index 000000000..7104f3321 --- /dev/null +++ b/sources/target_skeleton/etc/init.d/S50networking @@ -0,0 +1,7 @@ +#!/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 dev.null |