diff options
| author | Simon Glass <sjg@chromium.org> | 2013-05-16 13:53:23 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-06-04 16:06:31 -0400 | 
| commit | 53f375fa819c656eec32ac779456a612836ae006 (patch) | |
| tree | 83f817f2a106ae228b4775bb77bc02d466490b62 /common/cmd_bootm.c | |
| parent | a51ec63b85edbc6f8987069d0a60eec09d4f35c8 (diff) | |
| download | olio-uboot-2014.01-53f375fa819c656eec32ac779456a612836ae006.tar.xz olio-uboot-2014.01-53f375fa819c656eec32ac779456a612836ae006.zip | |
image: Use fit_image_load() to load FDT
Use the new common code to load a flat device tree. Also fix up a few casts
so that this code works with sandbox. Other than that the functionality
should not change.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/cmd_bootm.c')
| -rw-r--r-- | common/cmd_bootm.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 15f4599d4..d2b5cce51 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -306,7 +306,7 @@ static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]  #if defined(CONFIG_OF_LIBFDT)  		/* find flattened device tree */ -		ret = boot_get_fdt(flag, argc, argv, &images, +		ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, &images,  				   &images.ft_addr, &images.ft_len);  		if (ret) {  			puts("Could not find a valid device tree\n"); @@ -1820,7 +1820,7 @@ static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc,  #if defined(CONFIG_OF_LIBFDT)  	/* find flattened device tree */ -	ret = boot_get_fdt(flag, argc, argv, images, +	ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, images,  			   &images->ft_addr, &images->ft_len);  	if (ret) {  		puts("Could not find a valid device tree\n"); |