added tinyxml2 to macOS.yaml
[mfgtools.git] / uuu / emmc_burn_all.lst
blobd868d0516551b0fb84d41660a9fc343ca875d8e0
1 uuu_version 1.4.149
3 # @_flash.bin            | bootloader, which can extract from wic image
4 # @_image   [_flash.bin] | wic image burn to emmc.
7 # This command will be run when i.MX6/7 i.MX8MM, i.MX8MQ
8 SDP: boot -f _flash.bin -scanlimited 0x800000
10 # This command will be run when ROM support stream mode
11 # i.MX8QXP, i.MX8QM
12 SDPS: boot -scanterm -f _flash.bin -scanlimited 0x800000
14 # These commands will be run when use SPL and will be skipped if no spl
15 # SDPU will be deprecated. please use SDPV instead of SDPU
16 # {
17 SDPU: delay 1000
18 SDPU: write -f _flash.bin -offset 0x57c00
19 SDPU: jump -scanlimited 0x800000
20 # }
22 # These commands will be run when use SPL and will be skipped if no spl
23 # if (SPL support SDPV)
24 # {
25 SDPV: delay 1000
26 SDPV: write -f _flash.bin -skipspl -scanterm -scanlimited 0x800000
27 SDPV: jump -scanlimited 0x800000
28 # }
31 FB: ucmd setenv fastboot_dev mmc
32 FB: ucmd setenv mmcdev ${emmc_dev}
33 FB: ucmd mmc dev ${emmc_dev}
34 FB: flash -raw2sparse all _image
35 FB: flash -scanterm -scanlimited 0x800000 bootloader _flash.bin
36 FB: ucmd if env exists emmc_ack; then ; else setenv emmc_ack 0; fi;
37 FB: ucmd mmc partconf ${emmc_dev} ${emmc_ack} 1 0
38 FB: done