-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·72 lines (57 loc) · 1.64 KB
/
install.sh
File metadata and controls
executable file
·72 lines (57 loc) · 1.64 KB
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
mydir=$(readlink -f "$0")
mydir=$(dirname "$mydir")
pkill -f "python.*mpremote"
target="$1"
appname="$2"
if [ -z "$target" ]; then
echo "Usage: $0 <target> [appname]"
echo "Example: $0 fri3d-2024"
echo "Example: $0 waveshare-esp32-s3-touch-lcd-2"
echo "Example: $0 fri3d-2024 appstore"
echo "Example: $0 waveshare-esp32-s3-touch-lcd-2 imu"
exit 1
fi
mpremote=$(readlink -f "$mydir/../lvgl_micropython/lib/micropython/tools/mpremote/mpremote.py")
pushd internal_filesystem/
if [ ! -z "$appname" ]; then
echo "Installing one app: $appname"
appdir="apps/$appname/"
target="apps/"
if [ ! -d "$appdir" ]; then
echo "$appdir doesn't exist so taking the builtin/"
appdir="builtin/apps/$appname/"
target="builtin/apps/"
if [ ! -d "$appdir" ]; then
echo "$appdir also doesn't exist, exiting..."
exit 1
fi
fi
$mpremote mkdir "/apps"
$mpremote mkdir "/builtin"
$mpremote mkdir "/builtin/apps"
$mpremote fs cp -r "$appdir" :/"$target"
echo "start_app(\"/$appdir\")"
$mpremote
popd
exit
fi
if [ -z "$target" -o "$target" == "waveshare-esp32-s3-touch-lcd-2" ]; then
$mpremote fs cp boot.py :/boot.py
else
$mpremote fs cp boot_"$target".py :/boot.py
fi
$mpremote fs cp main.py :/main.py
#$mpremote fs cp main.py :/system/button.py
#$mpremote fs cp autorun.py :/autorun.py
#$mpremote fs cp -r system :/
$mpremote fs cp -r apps :/
$mpremote fs cp -r builtin :/
$mpremote fs cp -r lib :/
$mpremote fs cp -r resources :/
#$mpremote fs cp -r data :/
#$mpremote fs cp -r data/images :/data/
popd
if [ -z "$appname" ]; then
echo "Not resetting so the installed app can be used immediately."
$mpremote reset
fi