diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-04-26 19:37:50 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-04-26 19:37:50 +0000 |
commit | 38f841ae9054dc14ff3533bdc6ffc6e933f6d14b (patch) | |
tree | 8fe3c485d6c19e218be1539f49ccbbe84ac1656c /packages/initscripts/initscripts-1.0 | |
parent | ac13c8f1d514a60a09b2030f34308a93dd0775d4 (diff) |
initscripts: dropped OpenZaurus specific checkversion script
Diffstat (limited to 'packages/initscripts/initscripts-1.0')
-rw-r--r-- | packages/initscripts/initscripts-1.0/openzaurus/.mtn2git_empty | 0 | ||||
-rwxr-xr-x | packages/initscripts/initscripts-1.0/openzaurus/checkversion | 31 |
2 files changed, 0 insertions, 31 deletions
diff --git a/packages/initscripts/initscripts-1.0/openzaurus/.mtn2git_empty b/packages/initscripts/initscripts-1.0/openzaurus/.mtn2git_empty deleted file mode 100644 index e69de29bb2..0000000000 --- a/packages/initscripts/initscripts-1.0/openzaurus/.mtn2git_empty +++ /dev/null diff --git a/packages/initscripts/initscripts-1.0/openzaurus/checkversion b/packages/initscripts/initscripts-1.0/openzaurus/checkversion deleted file mode 100755 index 0c8be4fc2d..0000000000 --- a/packages/initscripts/initscripts-1.0/openzaurus/checkversion +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh - -found=`cat /proc/version | cut -d ' ' -f3` -echo "$found" | grep -q "snapshot" && exit 0 - -if [ "VERSION" != "$found" ] ; then - echo -e >/dev/tty1 - echo -e "\033[31;1m ******************************************* \033[0m" >/dev/tty1 - echo -e "\033[31;1m * \033[0mW A R N I N G ! \033[31;1m* \033[0m" >/dev/tty1 - echo -e "\033[31;1m ******************************************* \033[0m" >/dev/tty1 - echo >/dev/tty1 - echo -e "\033[31;1m ******************************************* \033[0m" >/dev/tty1 - echo -e "\033[31;1m * \033[0mYou are running the wrong kernel! \033[31;1m* \033[0m" >/dev/tty1 - echo -e "\033[31;1m ******************************************* \033[0m" >/dev/tty1 - echo >/dev/tty1 - echo -e "You are running '" $found "'" >/dev/tty1 - echo -e "I expect kernel '" VERSION "'" >/dev/tty1 - echo >/dev/tty1 - echo -e "\033[31;1m ******************************************* \033[0m" >/dev/tty1 - echo -e "\033[31;1m * \033[0mRunning this combination is unsupported \033[31;1m* \033[0m" >/dev/tty1 - echo -e "\033[31;1m ******************************************* \033[0m" >/dev/tty1 - echo >/dev/tty1 - echo "I will sleep for 1 minute now. Use this chance to " >/dev/tty1 - echo "reboot the device and flash the proper kernel now! " >/dev/tty1 - echo -e >/dev/tty1 - echo -e "\033[31;1m ******************************************* \033[0m" >/dev/tty1 - echo -e "\033[31;1m * \033[0mW A R N I N G ! \033[31;1m* \033[0m" >/dev/tty1 - echo -e "\033[31;1m ******************************************* \033[0m" >/dev/tty1 - echo >/dev/tty1 - sleep 60 -fi |