mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
9 lines
244 B
Bash
Executable File
9 lines
244 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
export LD_LIBRARY_PATH="$APPDIR/usr/lib:$LD_LIBRARY_PATH"
|
|
WORKDIR=$(mktemp -d)
|
|
cp -a "$APPDIR/usr/share/px4/romfs/." "$WORKDIR"
|
|
export PATH="$WORKDIR/bin:$WORKDIR:$PATH"
|
|
exec "$APPDIR/usr/bin/px4" -w "$WORKDIR" "$@"
|