• Rust Development
    • Using Cross to Cross-comp...
  • Compile a C program for the board using SDK
    • Create a BSP using phyLinux
      • Add a Given Recipe to BSP
        • Add LVGL Demo into BSP
          • AM64x: Boot-selection
            • Copy SD Card Image to an SD Card
              • Copy Software to the Board via SSH and SCP
                • Getting and Running the PHYTEC VM
                  • Install FTDI Driver on Windows
                    • Set Static IP Address in Ubuntu 20.04 LTS
                      • Setup a Second Network Interface in the Virtual Machine
                        • Setup qbee Device Management on phyBOARD-Polis
                          • Using phyLinux to build a yocto BSP with a build-container
                            • Using thingsboard.io to connect phyBOARD-Polis to the Cloud

                              Copy SD Card Image to an SD Card

                              Goal

                              Copy a created SD card image to an SD card for Windows.

                              Prerequisite

                              1. You have an SD card image
                              2. You have an SD card with at least 8GB storage space

                              Tutorial for Windows

                              1. For this tutorial, we will use the Balena etcher (https://etcher.balena.io/) to flash the image to the SD card.
                              2. If the etcher is installed correctly, you can use the program to flash the image to the SD card.
                              3. When the flashing process is finished, you can remove the SD card from the host computer and use it on the board.

                              Tutorial for Linux

                              1. We will use "dd" on the command line to flash the image to the SD card.
                                Flash the image to sdcard
                                # find the sdcard on your /dev folder
                                # then umount it
                                sudo umount /dev/<sdcard device>
                                sudo dd if=<path to sdcard image> of=/dev/<sdcard device> bs=1M conv=fsync status=progress
                              2. When the command is finished, you can unplug the SD card and insert it into the board.