-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
There are different options for where to install U-Boot on the RockPro64. | ||
Below are commands that can be used to write U-Boot to various locations. | ||
|
||
# Write U-Boot to SD Card or eMMC | ||
|
||
# SD Card | ||
export target_dev=/dev/mmcblk1 | ||
# eMMC | ||
export target_dev=/dev/mmcblk2 | ||
dd if=/usr/lib/rockpro64-uboot/u-boot-rockchip.bin of=${target_dev} seek=64 | ||
|
||
|
||
# Write U-Boot to SPI | ||
dd if=/usr/lib/rockpro64-uboot/u-boot-rockchip-spi.bin of=/dev/mtd0 | ||
|
||
For more information see the U-Boot documentation: | ||
https://github.com/u-boot/u-boot/blob/v2025.01/doc/board/rockchip/rockchip.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters