diff options
author | mb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-08-08 18:36:38 +0000 |
---|---|---|
committer | mb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-08-08 18:36:38 +0000 |
commit | 20b373a23bfbdde2ff0ac57653ddf3e8da0f3b3b (patch) | |
tree | 1682db393e1b5529e485b4bfcfa5303b90262822 /target/linux/omap24xx/base-files/etc | |
parent | 02e66a9ff80c6aa5b751bc0a380a2eb7eed6cb8e (diff) |
omap24xx: Add working inittab and watchdog init script
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22534 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/omap24xx/base-files/etc')
-rwxr-xr-x | target/linux/omap24xx/base-files/etc/init.d/watchdog | 15 | ||||
-rw-r--r-- | target/linux/omap24xx/base-files/etc/inittab | 5 |
2 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/omap24xx/base-files/etc/init.d/watchdog b/target/linux/omap24xx/base-files/etc/init.d/watchdog new file mode 100755 index 000000000..fa5dc4365 --- /dev/null +++ b/target/linux/omap24xx/base-files/etc/init.d/watchdog @@ -0,0 +1,15 @@ +#!/bin/sh /etc/rc.common +# Copyright (C) 2008-2010 OpenWrt.org + +START=97 +start() { + if ! [ -c /dev/watchdog -a -x /sbin/watchdog ]; then + echo "WARNING: Watchdog not available. System will reboot soon!" + else + /sbin/watchdog -T 63 -t 53 /dev/watchdog + fi +} + +stop() { + killall -q watchdog +} diff --git a/target/linux/omap24xx/base-files/etc/inittab b/target/linux/omap24xx/base-files/etc/inittab new file mode 100644 index 000000000..e39d2f158 --- /dev/null +++ b/target/linux/omap24xx/base-files/etc/inittab @@ -0,0 +1,5 @@ +::sysinit:/etc/init.d/rcS S boot +::shutdown:/etc/init.d/rcS K stop +tts/0::askfirst:/bin/ash --login +ttyS2::askfirst:/bin/ash --login +tty1::askfirst:/bin/ash --login |