added tinyxml2 to macOS.yaml
[mfgtools.git] / uuu / emmc_burn_loader.lst
blob27128fe6f613e36764e8c1284e691bb7e146646b
1 uuu_version 1.2.39
3 # @_flash.bin            | bootloader
4 # @_image   [_flash.bin] | image burn to emmc, default is the same as bootloader
6 # This command will be run when i.MX6/7 i.MX8MM, i.MX8MQ
7 SDP: boot -f _flash.bin
9 # This command will be run when ROM support stream mode
10 # i.MX8QXP, i.MX8QM
11 SDPS: boot -f _flash.bin
13 # These commands will be run when use SPL and will be skipped if no spl
14 # SDPU will be deprecated. please use SDPV instead of SDPU
15 # {
16 SDPU: delay 1000
17 SDPU: write -f _flash.bin -offset 0x57c00
18 SDPU: jump
19 # }
21 # These commands will be run when use SPL and will be skipped if no spl
22 # if (SPL support SDPV)
23 # {
24 SDPV: delay 1000
25 SDPV: write -f _flash.bin -skipspl
26 SDPV: jump
27 # }
29 FB: ucmd setenv fastboot_dev mmc
30 FB: ucmd setenv mmcdev ${emmc_dev}
31 FB: ucmd mmc dev ${emmc_dev}
32 FB: flash bootloader _image
33 FB: ucmd if env exists emmc_ack; then ; else setenv emmc_ack 0; fi;
34 FB: ucmd mmc partconf ${emmc_dev} ${emmc_ack} 1 0
35 FB: Done