Lines Matching +full:no +full:- +full:mmc
6 * SPDX-License-Identifier: GPL-2.0+
37 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
41 /* MMC */
86 #define CONFIG_SYS_AUTOLOAD "no"
87 #define CONFIG_ROOTPATH "/tftpboot/" __stringify(CONFIG_BOARD_NAME) "-root"
107 "kernelimg=" __stringify(CONFIG_BOARD_NAME) "-linux.bin\0" \
109 "check_env=if test -n ${flash_env_version}; " \
114 "echo \"*** Warning - Environment version" \
118 "flash_reset_env=env default -f -a && saveenv && " \
120 "download_uboot_spl=tftpboot ${loadaddr} ${board_name}-u-boot.spl\0" \
122 "if mmc dev 0 1; then " \
125 "if mmc write ${loadaddr} 0x2 ${sz}; then " \
126 "echo Flashing of U-boot SPL succeed; " \
127 "else echo Flashing of U-boot SPL failed; " \
130 "download_uboot_img=tftpboot ${loadaddr} ${board_name}-u-boot.img\0" \
132 "if mmc dev 0 1; then " \
135 "if mmc write ${loadaddr} 0x8a ${sz}; then " \
136 "echo Flashing of U-boot image succeed; " \
137 "else echo Flashing of U-boot image failed; " \
144 "if ext4write mmc ${mmcdev}:${mmcpart} ${loadaddr} /boot/${kernelimg} ${filesize}; then " \
149 "download_dtb=tftpboot ${fdt_addr} imx6ul-${fdt_name}.dtb\0" \
151 …"if ext4write mmc ${mmcdev}:${mmcpart} ${fdt_addr} /boot/imx6ul-${fdt_name}.dtb ${filesize}; then …
156 "download_rootfs=tftpboot ${loadaddr} ${board_name}-rootfs.ext4\0" \
158 "if mmc dev 0 0; then " \
161 "if mmc write ${loadaddr} 0x40800 ${nbblocks}; then " \
168 "if mmc dev 0 0; then " \
171 "if mmc write ${loadaddr} 0x800 ${nbblocks}; then " \
177 "download_userdata=tftpboot ${loadaddr} ${board_name}-user_data.ext4\0" \
179 "if mmc dev 0 0; then " \
182 "if mmc write ${loadaddr} 0 ${nbblocks}; then " \
187 "update_userdata=run download_userdata flash_userdata; mmc rescan\0" \
189 "if mmc dev 0 0; then " \
190 "echo Erasing eMMC User Data partition, no way out...; " \
192 "mmc write ${loadaddr} 0 0x1000; " \
193 "mmc write ${loadaddr} 0x800 0x1000; " \
194 "mmc write ${loadaddr} 0x40800 0x1000; " \
195 "mmc write ${loadaddr} 0x440800 0x1000; " \
197 "mmc rescan\0" \
205 "load mmc ${mmcdev}:${mmcpart} ${loadaddr} /boot/${kernelimg} && " \
206 "load mmc ${mmcdev}:${mmcpart} ${fdt_addr} /boot/imx6ul-${fdt_name}.dtb && " \
207 "bootz ${loadaddr} - ${fdt_addr};\0" \
213 "nfs ${fdt_addr} ${serverip}:${rootpath}/boot/imx6ul-${fdt_name}.dtb && " \
214 "bootz ${loadaddr} - ${fdt_addr};\0"