Skip to content

Instantly share code, notes, and snippets.

View leonheldattoradex's full-sized avatar
🤠
yeeeehaw

Leon Held leonheldattoradex

🤠
yeeeehaw
View GitHub Profile
@leonheldattoradex
leonheldattoradex / recovery-mac-am62.sh
Last active October 16, 2024 11:58
Recovery script to load Toradex Easy Installer (Tezi) images from Mac OS
#!/bin/bash
# Download Tezi from https://developer.toradex.com/easy-installer/toradex-easy-installer/download-tezi#latest-release
# Unzip it, copy this script to the unzipped directory and run as `bash recovery-mac.sh`, following the usual way to
# put your board in recovery mode
# ask for the password early
sudo true
@leonheldattoradex
leonheldattoradex / recovery-mac-imx8.sh
Last active October 16, 2024 11:53
Recovery script to load Toradex Easy Installer (Tezi) images from Mac OS
#!/bin/sh
# Download Tezi from https://developer.toradex.com/easy-installer/toradex-easy-installer/download-tezi#latest-release
# Unzip it, copy this script to the unzipped directory and run as `bash recovery-mac.sh`, following the usual way to
# put your board in recovery mode
# Check if uuu is installed
if ! command -v uuu > /dev/null; then
echo "Error: uuu is not installed. Please install uuu using brew (https://brew.sh/) before running this script."
exit 1