diff --git a/common.h b/common.h index f364ec6..74ba4b6 100644 --- a/common.h +++ b/common.h @@ -62,8 +62,6 @@ /* UBL magic numbers */ #define UBL_MAGIC_BIN_IMG 0xA1ACED66 /* Describes binary flash image type * for UBL. */ -#define UBL_MAGIC_GZIP_IMG 0xA1ACED77 /* Describes gzipped binary flash - * image type for UBL. */ /* UBL commands */ #define UBL_CMD_FLASH_UBL_APP 0xA1ACEDCC /* Download UBL & application via diff --git a/uartboot.c b/uartboot.c index 2ce0b32..836b4e6 100644 --- a/uartboot.c +++ b/uartboot.c @@ -115,7 +115,7 @@ uart_boot(uint32_t *jump_entry_point) case UBL_CMD_FLASH_UBL_APP: host_msg("SENDUBL"); - /* Download UBL into GZIP format */ + /* Download UBL */ if (uart_get_prog(&uart_ack_header) != E_PASS) goto uartboot_error;