author | harlekin <harlekin> | 2004-10-05 21:47:16 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2004-10-05 21:47:16 (UTC) |
commit | 2d05ffb4bad93532e17b9350ff2d66fe3419cbe3 (patch) (side-by-side diff) | |
tree | 2a6355ea308cf4d982b4efa0f520b49036d98050 | |
parent | 6f985725f027dc73fd71adc5cfc5b1d6a8428dc5 (diff) | |
download | opie-2d05ffb4bad93532e17b9350ff2d66fe3419cbe3.zip opie-2d05ffb4bad93532e17b9350ff2d66fe3419cbe3.tar.gz opie-2d05ffb4bad93532e17b9350ff2d66fe3419cbe3.tar.bz2 |
scripts to fix the stupid embedix rom inittab behavior
-rw-r--r-- | share/opie-console/sl6000_embedix_kill_0_1.sh | 29 | ||||
-rw-r--r-- | share/opie-console/sl6000_embedix_restart_0_1.sh | 29 |
2 files changed, 58 insertions, 0 deletions
diff --git a/share/opie-console/sl6000_embedix_kill_0_1.sh b/share/opie-console/sl6000_embedix_kill_0_1.sh new file mode 100644 index 0000000..369c23e --- a/dev/null +++ b/share/opie-console/sl6000_embedix_kill_0_1.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +# Use egrep to fid out if we need to comment /etc/sync/serialctl +# from the inittab +/usr/bin/env egrep -q '^pd:[0-9]:respawn:/etc/sync/serialctl' /etc/inittab 2>/dev/null + +# If egrep did not find an enabled /etc/sync/serialctl in /etc/inittab, +# exit now (nothing to do) +if [ $? -ne 0 ]; then + exit 0 +fi + +# This "cp -af" is to get the perms correct on /etc/inittab.tmp +/usr/bin/env cp -af /etc/inittab /etc/inittab.tmp + +# This sed comments out the "etc/sync/serialctl" line +/usr/bin/env sed 's%^\(pd:[0-9]:respawn:/etc/sync/serialctl\)%#\1%' /etc/inittab > /etc/inittab.tmp + +# We have not yet modified /etc/inittab, so to stay on the safe side +# only modify it if the sed succeeded at what we asked it to do. +if [ $? -eq 0 ]; then + # This "cp -af" puts the new /etc/inittab into place + /usr/bin/env cp -af /etc/inittab.tmp /etc/inittab + # Unlink the tmp file + rm /etc/inittab.tmp + # HUP init + /usr/bin/env kill -HUP 1 +fi + diff --git a/share/opie-console/sl6000_embedix_restart_0_1.sh b/share/opie-console/sl6000_embedix_restart_0_1.sh new file mode 100644 index 0000000..4ce0e7e --- a/dev/null +++ b/share/opie-console/sl6000_embedix_restart_0_1.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +# Use egrep to fid out if we need to comment /etc/sync/serialctl +# from the inittab +/usr/bin/env egrep -q '^#pd:[0-9]:respawn:/etc/sync/serialctl' /etc/inittab 2>/dev/null + +# If egrep did not find an enabled /etc/sync/serialctl in /etc/inittab, +# exit now (nothing to do) +if [ $? -ne 0 ]; then + exit 0 +fi + +# This "cp -af" is to get the perms correct on /etc/inittab.tmp +/usr/bin/env cp -af /etc/inittab /etc/inittab.tmp + +# This sed comments out the "etc/sync/serialctl" line +/usr/bin/env sed 's%^#\(pd:[0-9]:respawn:/etc/sync/serialctl\)%\1%' /etc/inittab > /etc/inittab.tmp + +# We have not yet modified /etc/inittab, so to stay on the safe side +# only modify it if the sed succeeded at what we asked it to do. +if [ $? -eq 0 ]; then + # This "cp -af" puts the new /etc/inittab into place + /usr/bin/env cp -af /etc/inittab.tmp /etc/inittab + # Unlink the tmp file + rm /etc/inittab.tmp + # HUP init + /usr/bin/env kill -HUP 1 +fi + |