mirror of https://github.com/jetkvm/kvm.git
145 lines
3.7 KiB
Bash
Executable File
145 lines
3.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Exit immediately if a command exits with a non-zero status
|
|
set -e
|
|
|
|
C_RST="$(tput sgr0)"
|
|
C_ERR="$(tput setaf 1)"
|
|
C_OK="$(tput setaf 2)"
|
|
C_WARN="$(tput setaf 3)"
|
|
C_INFO="$(tput setaf 5)"
|
|
|
|
msg() { printf '%s%s%s\n' $2 "$1" $C_RST; }
|
|
|
|
msg_info() { msg "$1" $C_INFO; }
|
|
msg_ok() { msg "$1" $C_OK; }
|
|
msg_err() { msg "$1" $C_ERR; }
|
|
msg_warn() { msg "$1" $C_WARN; }
|
|
|
|
# Function to display help message
|
|
show_help() {
|
|
echo "Usage: $0 [options] -r <remote_ip>"
|
|
echo
|
|
echo "Required:"
|
|
echo " -r, --remote <remote_ip> Remote host IP address"
|
|
echo
|
|
echo "Optional:"
|
|
echo " -u, --user <remote_user> Remote username (default: root)"
|
|
echo " --run-go-tests Run go tests"
|
|
echo " --skip-ui-build Skip frontend/UI build"
|
|
echo " --help Display this help message"
|
|
echo
|
|
echo "Example:"
|
|
echo " $0 -r 192.168.0.17"
|
|
echo " $0 -r 192.168.0.17 -u admin"
|
|
}
|
|
|
|
# Default values
|
|
REMOTE_USER="root"
|
|
REMOTE_PATH="/userdata/jetkvm/bin"
|
|
SKIP_UI_BUILD=false
|
|
RESET_USB_HID_DEVICE=false
|
|
LOG_TRACE_SCOPES="${LOG_TRACE_SCOPES:-jetkvm,cloud,websocket,native,jsonrpc}"
|
|
RUN_GO_TESTS=false
|
|
|
|
# Parse command line arguments
|
|
while [[ $# -gt 0 ]]; do
|
|
case $1 in
|
|
-r|--remote)
|
|
REMOTE_HOST="$2"
|
|
shift 2
|
|
;;
|
|
-u|--user)
|
|
REMOTE_USER="$2"
|
|
shift 2
|
|
;;
|
|
--skip-ui-build)
|
|
SKIP_UI_BUILD=true
|
|
shift
|
|
;;
|
|
--reset-usb-hid)
|
|
RESET_USB_HID_DEVICE=true
|
|
shift
|
|
;;
|
|
--run-go-tests)
|
|
RUN_GO_TESTS=true
|
|
shift
|
|
;;
|
|
--help)
|
|
show_help
|
|
exit 0
|
|
;;
|
|
*)
|
|
echo "Unknown option: $1"
|
|
show_help
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
# Verify required parameters
|
|
if [ -z "$REMOTE_HOST" ]; then
|
|
msg_err "Error: Remote IP is a required parameter"
|
|
show_help
|
|
exit 1
|
|
fi
|
|
|
|
# Build the development version on the host
|
|
if [ "$SKIP_UI_BUILD" = false ]; then
|
|
msg_info "▶ Building frontend"
|
|
make frontend
|
|
fi
|
|
|
|
msg_info "▶ Building go binary"
|
|
make build_dev
|
|
|
|
if [ "$RUN_GO_TESTS" = true ]; then
|
|
msg_info "▶ Building go tests"
|
|
make build_dev_test
|
|
|
|
msg_info "▶ Copying device-tests.tar.gz to remote host"
|
|
ssh "${REMOTE_USER}@${REMOTE_HOST}" "cat > ${REMOTE_PATH}/device-tests.tar.gz" < device-tests.tar.gz
|
|
|
|
msg_info "▶ Running go tests"
|
|
ssh "${REMOTE_USER}@${REMOTE_HOST}" ash << EOF
|
|
set -e
|
|
cd ${REMOTE_PATH}
|
|
tar zxvf device-tests.tar.gz
|
|
./run_all_tests -test.v
|
|
EOF
|
|
fi
|
|
|
|
# Kill any existing instances of the application
|
|
ssh "${REMOTE_USER}@${REMOTE_HOST}" "killall jetkvm_app_debug || true"
|
|
|
|
# Copy the binary to the remote host
|
|
ssh "${REMOTE_USER}@${REMOTE_HOST}" "cat > ${REMOTE_PATH}/jetkvm_app_debug" < jetkvm_app_debug
|
|
|
|
if [ "$RESET_USB_HID_DEVICE" = true ]; then
|
|
# Remove the old USB gadget configuration
|
|
ssh "${REMOTE_USER}@${REMOTE_HOST}" "rm -rf /sys/kernel/config/usb_gadget/jetkvm/configs/c.1/hid.usb*"
|
|
ssh "${REMOTE_USER}@${REMOTE_HOST}" "ls /sys/class/udc > /sys/kernel/config/usb_gadget/jetkvm/UDC"
|
|
fi
|
|
|
|
# Deploy and run the application on the remote host
|
|
ssh "${REMOTE_USER}@${REMOTE_HOST}" ash << EOF
|
|
set -e
|
|
|
|
# Set the library path to include the directory where librockit.so is located
|
|
export LD_LIBRARY_PATH=/oem/usr/lib:\$LD_LIBRARY_PATH
|
|
|
|
# Kill any existing instances of the application
|
|
killall jetkvm_app || true
|
|
killall jetkvm_app_debug || true
|
|
|
|
# Navigate to the directory where the binary will be stored
|
|
cd "${REMOTE_PATH}"
|
|
|
|
# Make the new binary executable
|
|
chmod +x jetkvm_app_debug
|
|
|
|
# Run the application in the background
|
|
PION_LOG_TRACE=${LOG_TRACE_SCOPES} ./jetkvm_app_debug
|
|
EOF
|
|
|
|
echo "Deployment complete." |