Lines Matching +full:write +full:- +full:host
10 This will generate the SPL image called SPL and the u-boot-dtb.img.
21 ---------------
23 - Build imx_usb_loader
29 - Build the BSP and copy SPL, u-boot-dtb.img in imx_usb_loader directory
31 - Put the board in "Serial Download Mode"
33 - Plug-in USB-to-Serial, Open minicom 1152008N1 and USB OTG cables to Host
35 - Turn-on board
37 - Identify VID/PID using lsusb
41 - Update the conf files
54 u-boot-dtb.img:jump header2
56 - Launch the loader
60 We can see U-Boot boot from USB SDP on minicom
63 --------------------
67 - Change eMMC partition config
71 - Partition eMMC on host
75 Host will able to detect the eMMC disk as UMS, partition the same.
77 - Program SPL
82 At Host
84 # dfu-util -D SPL -a spl
86 - Program u-boot-dtb.img
91 At Host
93 # dfu-util -D u-boot-dtb.img -a u-boot
95 Poweroff and Poweron the board and see U-Boot booting from eMMC.
98 --------------
100 - Skip 10M space and create dual partitions for eMMC, start sector is 20480
102 Partition Map for MMC device 2 -- Partition Type: DOS
105 1 20480 131072 c52e78be-01 83
106 2 151552 7581696 c52e78be-02 83
108 - Write uImage
111 => mmc write $kernel_addr_r 0x1000 0x4000
113 - Write dtb and args
116 => fatload mmc 2:1 $fdt_addr_r imx6dl-mamoj.dtb
117 => spl export fdt $kernel_addr_r - $fdt_addr_r
118 => mmc write 0x13000000 0x800 0x800
122 --