We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7efb050 commit ea36340Copy full SHA for ea36340
1 file changed
install.sh
@@ -0,0 +1,32 @@
1
+#!/bin/sh
2
+
3
+# Install IPKs from python_setup directory
4
+if [ -d "./python_setup" ]; then
5
+ echo "Installing IPKs from ./python_setup..."
6
+ for ipk in ./python_setup/*.ipk; do
7
+ if [ -f "$ipk" ]; then
8
+ opkg install "$ipk"
9
+ else
10
+ echo "Warning: File not found: $ipk"
11
+ fi
12
+ done
13
+else
14
+ echo "Warning: ./python_setup directory not found."
15
+fi
16
17
+# Install IPKs from custom_setup directory
18
+if [ -d "./custom_setup" ]; then
19
+ echo "Installing IPKs from ./custom_setup..."
20
+ for ipk in ./custom_setup/*.ipk; do
21
22
23
24
25
26
27
28
+ echo "Warning: ./custom_setup directory not found."
29
30
31
+exit 0
32
0 commit comments