Debian Build U-Boot: Difference between revisions
(Update/Align to the Debian script) |
(imx8: fix wget urls) |
||
Line 5: | Line 5: | ||
--> {{INIT_RELEASE_PARAM|RELEASE_BUSTER_V2.0_DART-MX8M}}<!-- | --> {{INIT_RELEASE_PARAM|RELEASE_BUSTER_V2.0_DART-MX8M}}<!-- | ||
--> {{#lst:Debian_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!-- | --> {{#lst:Debian_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!-- | ||
--> {{#vardefine:DEBIAN_GIT_WGET|{{#replace:{{#var:DEBIAN_GIT}}|.git|}}}} <!-- | |||
--> {{PageHeader|{{#var:PLATFORM_OS}} Build U-Boot from source code}} {{DocImage|category1=Debian|category2={{#var:HARDWARE_NAME}}}} <!-- | --> {{PageHeader|{{#var:PLATFORM_OS}} Build U-Boot from source code}} {{DocImage|category1=Debian|category2={{#var:HARDWARE_NAME}}}} <!-- | ||
--> __toc__ | --> __toc__ | ||
Line 61: | Line 62: | ||
{{#ifexpr: {{#var:DEBIAN_VERSION}} < 11 |Either build|Build}} SCFW by following the {{Varlink|Yocto_Build_SCFW|{{#var:RELEASE_LINK}}|Build SCFW from source code}} page and copy the SCFW image to the imx-boot-tools directory{{#ifexpr: {{#var:DEBIAN_VERSION}} < 11 |, or download the pre-built binary by running:<br> | {{#ifexpr: {{#var:DEBIAN_VERSION}} < 11 |Either build|Build}} SCFW by following the {{Varlink|Yocto_Build_SCFW|{{#var:RELEASE_LINK}}|Build SCFW from source code}} page and copy the SCFW image to the imx-boot-tools directory{{#ifexpr: {{#var:DEBIAN_VERSION}} < 11 |, or download the pre-built binary by running:<br> | ||
<!-- For Buster (Debian 10) obtain from the debian-var repo --> | <!-- For Buster (Debian 10) obtain from the debian-var repo --> | ||
$ wget {{#var: | {{#switch:{{#var:SOC}} | ||
.<br><br>}} | | mx8qxp= | ||
For i.MXQXP SOC revB:<br> | |||
$ wget {{#var:DEBIAN_GIT_WGET}}/raw/{{#var:DEBIAN_BRANCH}}/variscite/{{#var:MACHINE_NAME}}/imx-boot-tools-b0/{{#var:SC_FIRMWARE}} -O scfw_tcm.bin | |||
For i.MXQXP SOC revB:<br> | |||
$ wget {{#var:DEBIAN_GIT_WGET}}/raw/{{#var:DEBIAN_BRANCH}}/variscite/{{#var:MACHINE_NAME}}/imx-boot-tools/{{#var:SC_FIRMWARE}} -O scfw_tcm.bin | |||
| mx8qm= | |||
$ wget {{#var:DEBIAN_GIT_WGET}}/raw/{{#var:DEBIAN_BRANCH}}/variscite/{{#var:MACHINE_NAME}}/imx-boot-tools/scfw_tcm.bin | |||
}} <!-- end of switch SOC --> | |||
|.<br><br>}} | |||
Download SECO firmware:<br> | Download SECO firmware:<br> | ||
Line 70: | Line 79: | ||
| mx8qxp= | | mx8qxp= | ||
For i.MXQXP SOC revB:<br> | For i.MXQXP SOC revB:<br> | ||
$ wget {{#var: | $ wget {{#var:DEBIAN_GIT_WGET}}/raw/{{#var:DEBIAN_BRANCH}}/variscite/{{#var:MACHINE_NAME}}/imx-boot-tools-b0/{{#var:SECO_FIRMWARE_IMG_B0}} | ||
For i.MXQXP SOC revC:<br> | For i.MXQXP SOC revC:<br> | ||
$ wget {{#var: | $ wget {{#var:DEBIAN_GIT_WGET}}/raw/{{#var:DEBIAN_BRANCH}}/variscite/{{#var:MACHINE_NAME}}/imx-boot-tools/{{#var:SECO_FIRMWARE_IMG}} | ||
| mx8qm= | | mx8qm= | ||
$ wget {{#var: | $ wget {{#var:DEBIAN_GIT_WGET}}/raw/{{#var:DEBIAN_BRANCH}}/variscite/{{#var:MACHINE_NAME}}/imx-boot-tools/{{#var:SECO_FIRMWARE_IMG}} | ||
}} | }} | ||
| | | | ||
Line 257: | Line 266: | ||
{{#ifeq: {{#var:SPL_SD_IMAGE_NAME}} | N/A | {{#ifeq: {{#var:SPL_SD_IMAGE_NAME}} | N/A | ||
|<br> | |<br> | ||
$ sudo cp {{#var:U-BOOT_IMAGE_NAME}} /media/rootfs/opt/images/Debian | $ sudo cp {{#var:U-BOOT_IMAGE_NAME|{{#var:U-BOOT_SD_IMAGE_NAME}}}} /media/rootfs/opt/images/Debian | ||
|<br> | |<br> | ||
$ sudo cp SPL /media/rootfs/opt/images/Debian | $ sudo cp SPL /media/rootfs/opt/images/Debian |
Revision as of 12:24, 3 May 2023
This page is using the default release RELEASE_BUSTER_V2.0_DART-MX8M.
To view this page for a specific Variscite SoM and software release, please follow these steps:
- Visit variwiki.com
- Select your SoM
- Select the software release
Toolchain installation for out of builds
To install the toolchain, follow the Debian Toolchain installation guide.
Build U-Boot out of tree
Obtain sources:
$ git clone https://github.com/varigit/uboot-imx.git -b imx_v2018.03_4.14.78_1.0.0_ga_var01 $ cd uboot-imx
Configure compilation environment:
$ export ARCH=arm64 $ export CROSS_COMPILE=~/var_mx8m_dart_debian/toolchain/gcc-linaro-6.3.1-2017.05-x86_64_aarch64-linux-gnu/aarch64-linux-gnu-
Cleanup everything:
$ make mrproper
Select configuration:
$ make imx8m_var_dart_defconfig
Build U-Boot:
$ make -j$(nproc)
Build boot image
The final boot image contains multiple firmware files, as explained by NXP in IMX_LINUX_USERS_GUIDE.pdf (Search for "How to build imx-boot image by using imx-mkimage").
The following procedure builds the final image:
Create imx-boot-tools directory:
$ mkdir imx-boot-tools $ cd imx-boot-tools
Download DDR and HDMI/DP firmware:
$ git clone https://github.com/varigit/debian-var.git -b debian_buster_var01 $ cp debian-var/variscite/imx8m-var-dart/imx-boot-tools/*ddr4* . $ cp debian-var/variscite/imx8m-var-dart/imx-boot-tools/signed_* .
Download imx-mkimage:
$ git clone /imx-mkimage -b $ cp imx-mkimage/iMX8M/*.c imx-mkimage/iMX8M/*.sh imx-mkimage/iMX8M/soc.mak .
Download ATF:
$ wget https://github.com/varigit/debian-var.git/raw/debian_buster_var01/variscite/imx8m-var-dart/imx-boot-tools/bl31-mx8m.bin -O bl31.bin
Copy U-Boot binaries:
$ cp ../tools/mkimage mkimage_uboot $ cp ../u-boot.bin . $ cp ../u-boot-nodtb.bin ../spl/u-boot-spl.bin ../arch/arm/dts/ .
Build boot image:
$ make -f soc.mak clean $ make -f soc.mak SOC= dtbs= MKIMG=./mkimage_imx8 PAD_IMAGE=./pad_image.sh CC=gcc OUTIMG=imx-boot-sd.bin flash_evk
Install the built U-Boot on an SD card
$ sudo dd if=imx-boot-sd.bin of=/dev/sdX bs=1K seek= conv=fsync (Replace /dev/sdX with the correct device)
If you want to use our recovery SD card to flash the built U-Boot to NAND flash/eMMC, then copy it to the appropriate location in the SD card:
$ sudo cp SPL /media/rootfs/opt/images/Debian $ sudo cp u-boot.img /media/rootfs/opt/images/Debian
And eject the SD card gracefully from host machine.
Update your U-Boot out of Debian tree
$ cd uboot-imx $ git pull