This commit is contained in:
Daiane Angolini 2025-10-17 10:21:05 +09:00 committed by GitHub
commit 6ff8439bb9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 37 additions and 0 deletions

View File

@ -39,3 +39,8 @@ DDR_FIRMWARE_NAME = " \
"
IMXBOOT_TARGETS_BASENAME = "flash_evk"
MFGTOOLCONFIG = "bootloader.uuu.in fullimage.uuu.in"
MFGTOOLCONFIG[bootloader.uuu.in] = "imx-boot:do_deploy,imx-boot"
MFGTOOLCONFIG[fullimage.uuu.in] = "imx-boot:do_deploy ${IMAGE_BASENAME}:do_image_complete,imx-boot ${IMAGE_BASENAME}-${MACHINE}.wic"

View File

@ -0,0 +1,15 @@
uuu_version 1.2.39
SDP: boot -f binaries/imx-boot
SDPV: delay 1000
SDPV: write -f binaries/imx-boot -skipspl
SDPV: jump
FB: ucmd setenv fastboot_dev mmc
FB: ucmd setenv mmcdev ${emmc_dev}
FB: ucmd mmc dev ${emmc_dev}
FB: flash bootloader binaries/imx-boot
FB: ucmd if env exists emmc_ack; then ; else setenv emmc_ack 0; fi;
FB: ucmd mmc partconf ${emmc_dev} ${emmc_ack} 1 0
FB: Done

View File

@ -0,0 +1,17 @@
uuu_version 1.2.39
SDP: boot -f binaries/imx-boot
SDPV: delay 1000
SDPV: write -f binaries/imx-boot -skipspl
SDPV: jump
FB: ucmd setenv fastboot_dev mmc
FB: ucmd setenv mmcdev ${emmc_dev}
FB: ucmd mmc dev ${emmc_dev}
FB: flash -raw2sparse all binaries/@@IMAGE_BASENAME@@-@@MACHINE@@.wic
FB: flash -scanterm -scanlimited 0x800000 bootloader binaries/imx-boot
FB: ucmd if env exists emmc_ack; then ; else setenv emmc_ack 0; fi;
FB: ucmd mmc partconf ${emmc_dev} ${emmc_ack} 1 0
FB: done