aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Green <andy.green@linaro.org>2012-11-14 09:49:27 +0000
committerAndy Green <andy.green@linaro.org>2012-11-14 17:07:20 +0000
commite1de1a3fcd9a785201583b8ce01ae920f07e2ac2 (patch)
tree7ea5fc5fe317097fe8e65427398fc86b63ebf114
parent5ef4c7be2cea96cabad971ee27f95b334e8b224b (diff)
remove init meddling from install script
Signed-off-by: Andy Green <andy.green@linaro.org>
-rwxr-xr-xinstall.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/install.sh b/install.sh
index 06829a0..9517992 100755
--- a/install.sh
+++ b/install.sh
@@ -38,7 +38,7 @@ echo "done."
# Make & install fmb_driver
#
#(cd fmb_driver; chmod 744 install.sh; ./install.sh)
-(cp $module /etc/init.d/; chmod 755 /etc/init.d/$module)
+#(cp $module /etc/init.d/; chmod 755 /etc/init.d/$module)
#if [ -e /etc/init.d/$module ] ; then
# cd /etc/rc3.d/
@@ -50,11 +50,11 @@ echo "done."
#
# Edit /etc/rc.d/rc.local
#
-grep $module /etc/rc.local > /dev/null
-if [ $? != 0 ];then
- echo "/etc/init.d/$module" >> /etc/rc.local
-fi
+#grep $module /etc/rc.local > /dev/null
+#if [ $? != 0 ];then
+# echo "/etc/init.d/$module" >> /etc/rc.local
+#fi
-/etc/init.d/$module
+#/etc/init.d/$module
echo "Installation completed."