mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-07-18 19:32:04 +08:00
c8440ab691
version: lp-dp v0.9.2 for EON/C2 date: 2023-05-09T02:32:30 commit: cb8adff9d368de2e442e1e7f4309b70a4a2013ad
11 lines
255 B
Bash
Executable File
11 lines
255 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -f /EON ] && [ ! -f qt/spinner ]; then
|
|
cp qt/spinner_aarch64 qt/spinner
|
|
elif [ -f /TICI ] && [ ! -f qt/spinner ]; then
|
|
cp qt/spinner_larch64 qt/spinner
|
|
fi
|
|
|
|
export LD_LIBRARY_PATH="/system/lib64:$LD_LIBRARY_PATH"
|
|
exec ./qt/spinner "$1"
|