diff options
Diffstat (limited to 'board/trab/auto_update.c')
| -rw-r--r-- | board/trab/auto_update.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/board/trab/auto_update.c b/board/trab/auto_update.c index 0399fe86a..056e562bf 100644 --- a/board/trab/auto_update.c +++ b/board/trab/auto_update.c @@ -199,7 +199,7 @@ extern int transfer_pic(unsigned char, unsigned char *, int, int);  #endif  extern int flash_sect_erase(ulong, ulong);  extern int flash_sect_protect (int, ulong, ulong); -extern int flash_write (uchar *, ulong, ulong); +extern int flash_write (char *, ulong, ulong);  /* change char* to void* to shutup the compiler */  extern int i2c_write_multiple (uchar, uint, int, void *, int);  extern int i2c_read_multiple (uchar, uint, int, void *, int); @@ -296,7 +296,7 @@ au_check_header_valid(int idx, long nbytes)  	/* recycle checksum */  	checksum = ntohl(hdr->ih_size);  	/* for kernel and app the image header must also fit into flash */ -	if (idx != IDX_DISK) +	if ((idx != IDX_DISK) && (idx != IDX_FIRMWARE))  		checksum += sizeof(*hdr);  	/* check the size does not exceed space in flash. HUSH scripts */  	/* all have ausize[] set to 0 */ |