✈️ SD Migration Card Preparation
💾 SD Card Preparation
You are expected to already have the correct SD card images by applying to Scout EVK Upgrade Process
This page guides you through flashing new firmware onto a microSD card and upgrading your scout to newer generation.
Use a microSD card with at least 8 GB of capacity. This SD card is used during the Scout EVK upgrade process. All former data on the card will be permanently erased.
We recommend using a different SD card than the one currently used in your Scout EVK. This allows you to keep your original setup as a backup.
You can use either Windows or Linux to prepare the SD card.
If you are confident and understand the risks, you may reuse the existing card — but make sure to back up your current setup first.
- Windows
- Linux
🪟 Flashing the Image on Windows
We recommend using balenaEtcher, a free and user-friendly tool for flashing SD cards.
Instructions:
- Download and install balenaEtcher from https://etcher.balena.io.
- Insert the microSD card into your computer using an SD card reader.
- Open balenaEtcher.
- Click “Flash from file” and select the
scoutsdimg.imgfile. - Select the microSD card as the target device.
- Click “Flash!” to begin writing the image.
- Wait for the flashing and verification to complete. This may take several minutes.
Once done, you can safely eject the SD card.
🐧 Flashing the Image on Linux
You can use the dd command from the terminal to flash the image on Linux.
Instructions:
-
Insert the microSD card into your system.
-
Open a terminal and run:
lsblk
Identify your SD card device (e.g. /dev/sdb). Double-check this—flashing to the wrong device can erase critical data.
- Flash the image using the dd command:
sudo dd if=~/Downloads/scoutsdimg.img of=/dev/sdX bs=4M status=progress conv=fsync
Using the dd command incorrectly can permanently damage your system by overwriting the wrong disk.
Be very careful to identify the correct device path of your SD card (e.g. /dev/sdb) before running any command.
Flashing to your main system drive (e.g. /dev/sda) will result in data loss and an unbootable computer.
Always double-check the target device name using lsblk or fdisk -l before proceeding.
- Wait for the process to complete. Once the prompt returns, remove the SD card safely:
sudo eject /dev/sdX