-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
imx8mm-lpddr4-evk: mfgtool: Set MFGTOOLCONFIG
Set MFGTOOLCONFIG including two scripts, one for flashing only the bootloader (imx-boot) and the other flashing the complete image. Signed-off-by: Daiane Angolini <[email protected]>
- Loading branch information
Showing
3 changed files
with
37 additions
and
0 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
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,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 |
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 @@ | ||
|
||
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.gz | ||
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 |