forked from u-boot/u-boot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'doc-2024-04-rc2' of https://source.denx.de/u-boot/custodia…
…ns/u-boot-efi Pull request doc-2024-04-rc2 Documentation: * Fix and extend utf8_to_utf32_stream() documentation * Fix rendering of OpenSBI logo in VisionFive 2 description * Document imxrt1170-evk board * codingstyle.rst: Clarify include section UEFI: * simplify error message in efi_disk_create_raw()
- Loading branch information
Showing
6 changed files
with
81 additions
and
20 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,50 @@ | ||
.. SPDX-License-Identifier: GPL-2.0-or-later | ||
imxrt1170-evk | ||
============= | ||
|
||
How to use U-Boot on NXP i.MXRT1170 EVK | ||
--------------------------------------- | ||
|
||
- Build U-Boot for i.MXRT1170 EVK: | ||
|
||
.. code-block:: bash | ||
$ make mrproper | ||
$ make imxrt1170-evk_defconfig | ||
$ make | ||
This will generate the SPL image called SPL and the u-boot.img. | ||
|
||
- Flash the SPL image into the micro SD card: | ||
|
||
.. code-block:: bash | ||
$sudo dd if=SPL of=/dev/sdX bs=1k seek=1 conv=notrunc; sync | ||
This location is not compatible with GPT partioning. Please, use MBR | ||
partitioning instead. | ||
|
||
- Flash the u-boot.img image into the micro SD card: | ||
|
||
.. code-block:: bash | ||
$sudo dd if=u-boot.img of=/dev/sdX bs=1k seek=128 conv=notrunc; sync | ||
- Jumper settings | ||
|
||
.. list-table:: | ||
:stub-columns: 1 | ||
|
||
* - SW1 | ||
- 1 0 1 0 | ||
* - SW2 | ||
- 0 0 0 0 | 0 0 0 0 | 1 0 0 0 | ||
|
||
where 0 means bottom position and 1 means top position (from the | ||
switch label numbers reference). | ||
|
||
- Connect the USB cable between the EVK and the PC for the console. | ||
The USB console connector is the one close the ethernet connector | ||
|
||
- Insert the micro SD card in the board, power it up and U-Boot messages should come up. |
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
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
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
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
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