app
Adom USB - TI Sitara persona pack
Public Unreviewedby John Lauer
Load Linux USB-gadget / stub images onto a TI Sitara (AM335x/AM57x/AM62x) USB device controller to present MSC, RNDIS, CDC, or HID — validate host enumeration.
#!/bin/bash
set -euo pipefail
DIR="$(cd "$(dirname "$0")" && pwd)"; SLUG="adom-usb-stub-ti-sitara"
PDIR="${HOME}/.adom/usb-plugins/${SLUG}"; mkdir -p "$PDIR" "${HOME}/.local/bin"
install -m 0644 "$DIR/plugin.json" "$PDIR/plugin.json"
install -m 0755 "$DIR/$SLUG" "$PDIR/$SLUG"
[ -d "$DIR/firmware" ] && cp -r "$DIR/firmware" "$PDIR/" || true
ln -sf "$PDIR/$SLUG" "${HOME}/.local/bin/$SLUG"
echo "Installed plugin $SLUG -> $PDIR (adom-usb discovers it on next refresh)"