diff options
Diffstat (limited to 'common/cmd_ide.c')
| -rw-r--r-- | common/cmd_ide.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/common/cmd_ide.c b/common/cmd_ide.c index 94fc89b42..9441db2dd 100644 --- a/common/cmd_ide.c +++ b/common/cmd_ide.c @@ -404,7 +404,8 @@ int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  		SHOW_BOOT_PROGRESS (-1);  		return 1;  	} -	if (strncmp(info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) { +	if ((strncmp(info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) && +	    (strncmp(info.type, BOOT_PART_COMP, sizeof(info.type)) != 0)) {  		printf ("\n** Invalid partition type \"%.32s\""  			" (expect \"" BOOT_PART_TYPE "\")\n",  			info.type); |