2025-05-10 21:58:58 +08:00

21 lines
453 B
Bash
Executable File

#!/bin/bash -e
TARGET_DIR="$1"
[ "$TARGET_DIR" ] || exit 1
OVERLAY_DIR="$(dirname "$(realpath "$0")")"
echo "Installing prebuilt tools: $OVERLAY_DIR to $TARGET_DIR..."
DEST_DIR="$TARGET_DIR/usr/local/bin/"
mkdir -p "$DEST_DIR"
if ls "$TARGET_DIR/lib/" | grep -wq "ld-linux-armhf.so"; then
TARGET_ARCH=armhf
else
TARGET_ARCH=aarch64
fi
rsync -av --chmod=u=rwX,go=rX --exclude=adbd \
"$OVERLAY_DIR/perf" "$OVERLAY_DIR/$TARGET_ARCH/" "$DEST_DIR/"