diff options
Diffstat (limited to 'tools/mkimage.c')
| -rw-r--r-- | tools/mkimage.c | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/tools/mkimage.c b/tools/mkimage.c index fea3e5bc6..416e658f7 100644 --- a/tools/mkimage.c +++ b/tools/mkimage.c @@ -94,6 +94,7 @@ table_entry_t arch_name[] = {      {	IH_CPU_SPARC,		"sparc",	"SPARC",	},      {	IH_CPU_SPARC64,		"sparc64",	"SPARC 64 Bit",	},      {	IH_CPU_BLACKFIN,	"blackfin",	"Blackfin",	}, +    {	IH_CPU_AVR32,		"avr32",	"AVR32",	},      {	-1,			"",		"",		},  }; @@ -130,6 +131,7 @@ table_entry_t type_name[] = {      {	IH_TYPE_RAMDISK,    "ramdisk",	  "RAMDisk Image",	},      {	IH_TYPE_SCRIPT,     "script",	  "Script",		},      {	IH_TYPE_STANDALONE, "standalone", "Standalone Program", }, +    {	IH_TYPE_FLATDT,     "flat_dt",    "Flat Device Tree",	},      {	-1,		    "",		  "",			},  }; @@ -632,7 +634,7 @@ print_header (image_header_t *hdr)  	if (hdr->ih_type == IH_TYPE_MULTI || hdr->ih_type == IH_TYPE_SCRIPT) {  		int i, ptrs;  		uint32_t pos; -		unsigned long *len_ptr = (unsigned long *) ( +		uint32_t *len_ptr = (uint32_t *) (  					(unsigned long)hdr + sizeof(image_header_t)  				); |