mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-04-08 14:03:54 +08:00
version: lp-dp v0.9.5 for EON/C2 date: 2023-09-13T13:36:48 commit: 1d59b81c40b93f37d4a341c5d35b1c3cd293543d
11 lines
234 B
Bash
Executable File
11 lines
234 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -f /EON ] && [ ! -f qt/text ]; then
|
|
cp qt/text_earch64 qt/text
|
|
elif [ -f /TICI ] && [ ! -f qt/text ]; then
|
|
cp qt/text_larch64 qt/text
|
|
fi
|
|
|
|
export LD_LIBRARY_PATH="/system/lib64:$LD_LIBRARY_PATH"
|
|
exec ./qt/text "$1"
|