diff mbox series

[U-Boot] pico-imx7d: Remove specific code for fitImage

Message ID 20191013122907.23674-1-offougajoris@gmail.com
State Not Applicable, archived
Headers show
Series [U-Boot] pico-imx7d: Remove specific code for fitImage | expand

Commit Message

Joris OFFOUGA Oct. 13, 2019, 12:29 p.m. UTC
This implementation is a specific utilisation with CONFIG_FIT.
This feature use script for boot. With distrobootcmd is possible
to load script.

Signed-off-by: Joris Offouga <offougajoris@gmail.com>
---
 include/configs/pico-imx7d.h | 30 ------------------------------
 1 file changed, 30 deletions(-)

Comments

Otavio Salvador Oct. 13, 2019, 9:32 p.m. UTC | #1
On Sun, Oct 13, 2019 at 9:30 AM Joris Offouga <offougajoris@gmail.com> wrote:
>
> This implementation is a specific utilisation with CONFIG_FIT.
> This feature use script for boot. With distrobootcmd is possible
> to load script.
>
> Signed-off-by: Joris Offouga <offougajoris@gmail.com>

Reviewed-by: Otavio Salvador <otavio@ossystems.com.br>
diff mbox series

Patch

diff --git a/include/configs/pico-imx7d.h b/include/configs/pico-imx7d.h
index 5abf80a292..26eef59393 100644
--- a/include/configs/pico-imx7d.h
+++ b/include/configs/pico-imx7d.h
@@ -45,21 +45,6 @@ 
 		"/boot/imx7d-pico-pi.dtb ext4 0 1;" \
 		"rootfs part 0 1\0" \
 
-/* When booting with FIT specify the node entry containing boot.scr */
-#if defined(CONFIG_FIT)
-#define PICO_BOOT_ENV \
-	"bootscr_fitimage_name=bootscr\0" \
-	"bootscriptaddr=0x83200000\0" \
-	"fdtovaddr=0x83100000\0" \
-	"mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
-	"mmcpart=" __stringify(CONFIG_SYS_MMC_IMG_LOAD_PART) "\0" \
-	"mmcargs=setenv bootargs console=${console},${baudrate} " \
-		"rootwait rw;\0" \
-	"loadbootscript=" \
-		"load mmc ${mmcdev}:${mmcpart} ${bootscriptaddr} ${script};\0" \
-	"bootscript=echo Running bootscript from mmc ...; " \
-	"source ${bootscriptaddr}:${bootscr_fitimage_name}\0"
-#else
 #define PICO_BOOT_ENV \
 	"bootmenu_0=Boot using PICO-Hobbit baseboard=" \
 		"setenv fdtfile imx7d-pico-hobbit.dtb\0" \
@@ -70,8 +55,6 @@ 
 	"bootmenu_3=Boot using PICO-Pi baseboard=" \
 		"setenv fdtfile imx7d-pico-pi.dtb\0" \
 	BOOTENV
-#endif
-
 
 #define CONFIG_SYS_MMC_IMG_LOAD_PART	1
 
@@ -105,19 +88,6 @@ 
 	"setup_emmc=mmc dev 0; gpt write mmc 0 $partitions; reset;\0" \
 	PICO_BOOT_ENV
 
-#if defined(CONFIG_FIT)
-#define CONFIG_BOOTCOMMAND \
-	"mmc dev ${mmcdev};" \
-	"mmc dev ${mmcdev}; if mmc rescan; then " \
-		"if run loadbootscript; then " \
-			"iminfo ${bootscriptaddr};" \
-			"if test $? -eq 1; then hab_failsafe; fi;" \
-			"run bootscript; " \
-		"else " \
-			"echo Fail to load fitImage with boot script;" \
-			"hab_failsafe;" \
-		"fi; " \
-	"fi"
 #endif
 
 #define BOOT_TARGET_DEVICES(func) \