-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.sh
executable file
·127 lines (108 loc) · 3.98 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#!/bin/bash
if test $(id -u) != "0"; then
echo "Please supply root's password to install this package. "
su -c "$0"
ret=$?
exit $ret
fi
MODNAME=rr2680
#`grep TARGETNAME product/*/linux/Makefile | sed s'# ##'g | cut -d\= -f2 | sed s'#\r##'`
#echo $MODNAME
if [ "$MODNAME" == "" ]; then
echo "Could not determine driver name"
fi
rm -rf product/*/linux/*.ko
rm -rf product/*/linux/.build
rm -rf /usr/share/hptdrv/$MODNAME
mkdir -p /usr/share/hptdrv/
cp -R `pwd` /usr/share/hptdrv/$MODNAME
rm -f /usr/share/hptdrv/$MODNAME/install.sh
chown -R 0:0 /usr/share/hptdrv/$MODNAME
#touch /etc/sysconfig/hptdrv || exit 1
#echo MODLIST=\"$MODNAME\" > /etc/sysconfig/hptdrv
rm -f /etc/init.d/hptdrv-monitor
cp dist/hptdrv-function /usr/share/hptdrv/
cp dist/hptdrv-monitor /etc/init.d/
cp dist/hptdrv-rebuild /usr/sbin/
cp dist/hptdrv-update /etc/cron.daily/
chmod 755 /etc/init.d/hptdrv-monitor /usr/sbin/hptdrv-rebuild /etc/cron.daily/hptdrv-update /usr/share/hptdrv/hptdrv-function
. /usr/share/hptdrv/hptdrv-function
echo "Checking and installing required toolchain and utility ..."
case "${dist}" in
debian | ubuntu )
if grep ^deb /etc/apt/sources.list | grep -s -q cdrom; then
echo "Please insert the system installation disc in order to install build toolchain if needed."
read -p "Press ENTER to continue."
fi
;;
suse )
# -E option is unavailable on SuSE 12.1
if zypper lr -u | grep cd\: | grep device -s -q; then
echo "Please insert the system installation disc in order to install build toolchain if needed."
read -p "Press ENTER to continue."
fi
;;
esac
checkandinstall() {
if ! type -p $1 >/dev/null 2>&1; then
#echo "Installing program $1 ..."
installtool $1 || return 1
else
echo "Found program $1 (`type -p $1`)"
return 0
fi
}
checkandinstall make
if ! type make >/dev/null 2>&1; then
echo "Could not find make package, driver could not be built without this package. Please install it manually."
fi
checkandinstall gcc
if ! type gcc >/dev/null 2>&1; then
echo "Could not find gcc package, driver could not be built without this package. Please install it manually."
fi
checkandinstall perl
if ! type perl >/dev/null 2>&1; then
echo "Could not find perl package, driver could not be built without this package. Please install it manually."
fi
checkandinstall wget
if ! type wget >/dev/null 2>&1; then
echo "Could not find wget package, driver source code could not be updated without this package. Please install it manually."
fi
fixmodload
#touch /var/lock/subsys/hptdrv-monitor
if type systemctl >/dev/null 2>&1; then
if test -d /usr/lib/systemd/system; then
cp dist/hptdrv-monitor.service /usr/lib/systemd/system/
# suse 13.1 bug
if test -f "/usr/lib/systemd/system/[email protected]"; then
mkdir -p "/usr/lib/systemd/system/[email protected]/"
cp dist/50-before-network-online.conf "/usr/lib/systemd/system/[email protected]/"
fi
elif test -d /lib/systemd/system; then
cp dist/hptdrv-monitor.service /lib/systemd/system/
else
:
fi
systemctl daemon-reload >/dev/null 2>&1
systemctl enable hptdrv-monitor.service
systemctl start hptdrv-monitor.service
else
if type update-rc.d >/dev/null 2>&1; then
update-rc.d -f hptdrv-monitor remove >/dev/null 2>&1
update-rc.d hptdrv-monitor defaults >/dev/null 2>&1
elif type insserv >/dev/null 2>&1; then
insserv -r /etc/init.d/hptdrv-monitor
insserv /etc/init.d/hptdrv-monitor
else
ln -sf ../init.d/hptdrv-monitor /etc/rc0.d/K01hptdrv-monitor
ln -sf ../init.d/hptdrv-monitor /etc/rc6.d/K01hptdrv-monitor
ln -sf ../init.d/hptdrv-monitor /etc/rc1.d/S01hptdrv-monitor
ln -sf ../init.d/hptdrv-monitor /etc/rc2.d/S01hptdrv-monitor
ln -sf ../init.d/hptdrv-monitor /etc/rc3.d/S01hptdrv-monitor
ln -sf ../init.d/hptdrv-monitor /etc/rc4.d/S01hptdrv-monitor
ln -sf ../init.d/hptdrv-monitor /etc/rc5.d/S01hptdrv-monitor
fi
/etc/init.d/hptdrv-monitor start
fi
#/etc/init.d/hptdrv-monitor force-stop
# vim: expandtab ts=2 sw=2 ai