- Prepare the SD card by flashing it with
efi.binandrootfs.img. - Insert the prepared SD card into the SD card slot of the development kit.
Supported platforms
| Platform | Machine configuration | Development kit |
|---|---|---|
| Kodiak | rb3gen2-core-kit | Qualcomm Dragonwing™ RB3 Gen 2 Core Kit (QCS6490) |
| Lemans | iq-9075-evk | Qualcomm Dragonwing™ IQ-9075 EVK (QCS9075) |
| Monaco | iq-8275-evk | Qualcomm Dragonwing™ IQ-8275 EVK (QCS8275) |
| Talos | qcs615-ride | Qualcomm QCS615 ADP Air EVK (QCS615) |
- Verify the device node for the inserted SD card on any Linux system, for example,
/dev/mmcblk1or/dev/mmcblk2. - To format the SD card, run the
mkfs.ext4 <sdcard slot>command on the Linux terminal. In the following example, the dev node for the SD card is/dev/mmcblk1.Output: - Use the
fdiskcommand to create two partitions on the SD card to copyefi.binandrootfs.img.- Create the first partition with the
vfatfile system to copyefi.bin. To create the partition, run the following command (for example, the dev node is/dev/mmcblk1): In this example, leave theFirst sectorfield empty and ensure thatLast sectoris large enough to copyefi.bin.Output:To convert the partition to thevfatfile system, run the following command:Output: - Create the second partition with the
ext4file system to copyrootfs.imgas follows: To create the partition, run the following command (for example, the dev node is/dev/mmcblk1): In this example, leave theFirst sectorfield empty and ensure thatLast sectoris large enough to copyrootfs.img.Output:To convert the partition to theext4file system, run the following command:Output:
- Create the first partition with the
- Verify the partitions were created:
Output:
- Copy
efi.binandrootfs.imgfrom the successfully built Qualcomm Linux image on the host computer to the partitions on the SD card. Run the following commands on the host computer:dd if=<path>/efi.bin of=<sdcard slot> bs=4Mdd if=<path>/rootfs.img of=<sdcard slot> bs=4MTo copy both images from the/tmppath, following is an example of how to copy them to the SD card: In this command, the dev node for the SD card is/dev/mmcblk1.

