This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
products:sbc:common:development:create-bootable-tf-card [2022/07/05 23:14] nick ↷ Links adapted because of a move operation |
products:sbc:common:development:create-bootable-tf-card [2024/01/11 05:52] (current) nick |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Create Bootable TF Card ====== | ====== Create Bootable TF Card ====== | ||
- | |||
- | ===== Introduction ===== | ||
- | |||
What is a bootable TF card? | What is a bootable TF card? | ||
Line 15: | Line 12: | ||
<WRAP important > | <WRAP important > | ||
- | The process for VIM1, VIM2, VIM3, VIM3L and VIM4 is similar, so we will use VIM1 as an example. | + | The process for VIM1, VIM2, VIM3, VIM3L, VIM1S and VIM4 is similar, so we will use VIM1 as an example. |
</ | </ | ||
- | ===== Getting Started | + | ===== Download boot images |
- | Download U-Boot for ([[dl> | + | Download U-Boot for ([[dl> |
<tabbox VIM1/ | <tabbox VIM1/ | ||
Line 28: | Line 25: | ||
* '' | * '' | ||
- | <tabbox VIM4> | + | < |
* '' | * '' | ||
Line 34: | Line 31: | ||
</ | </ | ||
+ | |||
+ | ===== Linux command line usage examples ===== | ||
Insert the TF card into your PC, and unmount it: | Insert the TF card into your PC, and unmount it: | ||
- | ```sh | + | ```shell |
$ sudo umount /dev/sdX1 | $ sudo umount /dev/sdX1 | ||
``` | ``` | ||
Line 43: | Line 42: | ||
Format the TF card as FAT32: | Format the TF card as FAT32: | ||
- | ```sh | + | ```shell |
$ sudo mkfs.vfat /dev/sdX1 | $ sudo mkfs.vfat /dev/sdX1 | ||
``` | ``` | ||
Line 51: | Line 50: | ||
<tabbox VIM1/ | <tabbox VIM1/ | ||
- | ```sh | + | ```shell |
$ sudo dd if=u-boot.bin.sd.bin of=/dev/sdX conv=fsync, | $ sudo dd if=u-boot.bin.sd.bin of=/dev/sdX conv=fsync, | ||
$ sudo dd if=u-boot.bin.sd.bin of=/dev/sdX conv=fsync, | $ sudo dd if=u-boot.bin.sd.bin of=/dev/sdX conv=fsync, | ||
``` | ``` | ||
- | <tabbox VIM4> | + | < |
- | ```sh | + | ```shell |
$ sudo dd if=u-boot.bin.sd.bin.signed of=/dev/sdX conv=fsync, | $ sudo dd if=u-boot.bin.sd.bin.signed of=/dev/sdX conv=fsync, | ||
$ sudo dd if=u-boot.bin.sd.bin.signed of=/dev/sdX conv=fsync, | $ sudo dd if=u-boot.bin.sd.bin.signed of=/dev/sdX conv=fsync, | ||
Line 67: | Line 66: | ||
Eject the TF card from your PC: | Eject the TF card from your PC: | ||
- | ```sh | + | ```shell |
$ sudo eject /dev/sdX | $ sudo eject /dev/sdX | ||
``` | ``` | ||
Line 76: | Line 75: | ||
- | ===== Check your Bootable TF Card ===== | + | ===== Bootable TF Card logs ===== |
You need to [[products: | You need to [[products: |