Line | |
---|
1 | #!/bin/sh |
---|
2 | INSTDIR="$1" |
---|
3 | PLUGINDIR="$INSTDIR/usr/local/share/titan/plugins/sispmctl" |
---|
4 | |
---|
5 | if [ -e /tmp/sispmctl.conf ]; then |
---|
6 | mv "$PLUGINDIR/sispmctl.conf" "$PLUGINDIR/sispmctl.conf_org" |
---|
7 | cp /tmp/sispmctl.conf "$PLUGINDIR/sispmctl.conf" |
---|
8 | rm /tmp/sispmctl.conf >/dev/null 2>&1 |
---|
9 | |
---|
10 | mv "$PLUGINDIR/g1_script.sh" "$PLUGINDIR/bin/g1_script.sh_org" >/dev/null 2>&1 |
---|
11 | mv "$PLUGINDIR/g2_script.sh" "$PLUGINDIR/bin/g2_script.sh_org" >/dev/null 2>&1 |
---|
12 | mv "$PLUGINDIR/g3_script.sh" "$PLUGINDIR/bin/g3_script.sh_org" >/dev/null 2>&1 |
---|
13 | mv "$PLUGINDIR/g4_script.sh" "$PLUGINDIR/bin/g4_script.sh_org" >/dev/null 2>&1 |
---|
14 | |
---|
15 | cp /tmp/g1_script.sh "$PLUGINDIR/bin/g1_script.sh" >/dev/null 2>&1 |
---|
16 | cp /tmp/g2_script.sh "$PLUGINDIR/bin/g2_script.sh" >/dev/null 2>&1 |
---|
17 | cp /tmp/g3_script.sh "$PLUGINDIR/bin/g3_script.sh" >/dev/null 2>&1 |
---|
18 | cp /tmp/g4_script.sh "$PLUGINDIR/bin/g4_script.sh" >/dev/null 2>&1 |
---|
19 | |
---|
20 | rm /tmp/isispmctl.conf |
---|
21 | fi |
---|
22 | |
---|
23 | if [ ! -d /mnt/plugin ]; then |
---|
24 | mkdir -p /mnt/plugin |
---|
25 | fi |
---|
26 | if [ ! -f /mnt/plugin/ps01sispm ]; then |
---|
27 | cp "$PLUGINDIR/ps01sispm_dummy" /mnt/plugin/ps01sispm |
---|
28 | cp "$PLUGINDIR/pe01sispm_dummy" /mnt/plugin/pe01sispm |
---|
29 | fi |
---|
30 | |
---|
31 | #cp "$PLUGINDIR/lib/libusb-0.1.so.4" "/usr/lib/libusb-0.1.so.4" |
---|
32 | |
---|
33 | if [ -e /etc/.oebuild ];then |
---|
34 | opkg update |
---|
35 | opkg install titan-plugin-sispmctl --dest $1 |
---|
36 | fi |
---|
37 | |
---|
38 | exit 0 |
---|
Note: See
TracBrowser
for help on using the repository browser.