mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-20 05:22:03 +08:00
634aa84919
version: lp-dp v0.9.5 for EON/C2 date: 2023-09-13T13:36:48 commit: 1d59b81c40b93f37d4a341c5d35b1c3cd293543d
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_earch64 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"
|