mirror of
https://github.com/MoreTore/openpilot.git
synced 2026-07-31 23:02:03 +08:00
1c369a9009
* qt on neos * cleanup * check arch * fix pc * fix mac * base libs Co-authored-by: Comma Device <device@comma.ai>
12 lines
253 B
Bash
Executable File
12 lines
253 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export LD_LIBRARY_PATH="/system/lib64:$LD_LIBRARY_PATH"
|
|
|
|
if [ -f /EON ]; then
|
|
export QT_QPA_EGLFS_HIDECURSOR=1
|
|
export QT_QPA_EVDEV_TOUCHSCREEN_PARAMETERS=/dev/input/event1:rotate=270
|
|
export QT_QPA_FONTDIR=../assets/fonts
|
|
fi
|
|
|
|
exec ./_ui
|