fix some definitions in the ZyXEL tool
SVN-Revision: 9493
This commit is contained in:
parent
9b486d6381
commit
9cb4694eb9
2 changed files with 36 additions and 34 deletions
|
@ -668,7 +668,7 @@ write_out_image(FILE *outfile)
|
||||||
/* setup header fields */
|
/* setup header fields */
|
||||||
hdr.addr = board->code_start;
|
hdr.addr = board->code_start;
|
||||||
hdr.type = OBJECT_TYPE_BOOTEXT;
|
hdr.type = OBJECT_TYPE_BOOTEXT;
|
||||||
hdr.flags = ROMBIN_FLAG_40;
|
hdr.flags = ROMBIN_FLAG_OCSUM;
|
||||||
|
|
||||||
res = write_out_header(outfile, &hdr);
|
res = write_out_header(outfile, &hdr);
|
||||||
if (res)
|
if (res)
|
||||||
|
|
|
@ -36,11 +36,13 @@ struct zyn_bootbase_info {
|
||||||
char vendor[BOOTBASE_NAME_LEN]; /* Vendor name */
|
char vendor[BOOTBASE_NAME_LEN]; /* Vendor name */
|
||||||
char model[BOOTBASE_NAME_LEN]; /* Model name */
|
char model[BOOTBASE_NAME_LEN]; /* Model name */
|
||||||
uint32_t bootext_addr; /* absolute address of the Boot Extension */
|
uint32_t bootext_addr; /* absolute address of the Boot Extension */
|
||||||
uint32_t res0;
|
uint16_t res0; /* reserved */
|
||||||
|
uint8_t sys_type; /* system type */
|
||||||
|
uint8_t res1; /* reserved */
|
||||||
uint16_t model_id; /* model id */
|
uint16_t model_id; /* model id */
|
||||||
uint8_t feat_other[BOOTBASE_FEAT_LEN]; /* other feature bits */
|
uint8_t feat_other[BOOTBASE_FEAT_LEN]; /* other feature bits */
|
||||||
uint8_t feat_main; /* main feature bits */
|
uint8_t feat_main; /* main feature bits */
|
||||||
uint8_t res1; /* unknown/unused */
|
uint8_t res2; /* reserved */
|
||||||
uint8_t mac[BOOTBASE_MAC_LEN]; /* mac address */
|
uint8_t mac[BOOTBASE_MAC_LEN]; /* mac address */
|
||||||
uint8_t country; /* default country code */
|
uint8_t country; /* default country code */
|
||||||
uint8_t dbgflag; /* debug flag */
|
uint8_t dbgflag; /* debug flag */
|
||||||
|
@ -74,8 +76,8 @@ struct zyn_rombin_hdr {
|
||||||
#define ROMBIN_FLAG_04 0x04
|
#define ROMBIN_FLAG_04 0x04
|
||||||
#define ROMBIN_FLAG_08 0x08
|
#define ROMBIN_FLAG_08 0x08
|
||||||
#define ROMBIN_FLAG_10 0x10
|
#define ROMBIN_FLAG_10 0x10
|
||||||
#define ROMBIN_FLAG_20 0x20
|
#define ROMBIN_FLAG_CCSUM 0x20 /* compressed checksum is valid */
|
||||||
#define ROMBIN_FLAG_40 0x40
|
#define ROMBIN_FLAG_OCSUM 0x40 /* original checksum is valid */
|
||||||
#define ROMBIN_FLAG_COMPRESSED 0x80 /* the binary is compressed */
|
#define ROMBIN_FLAG_COMPRESSED 0x80 /* the binary is compressed */
|
||||||
|
|
||||||
/* Object types */
|
/* Object types */
|
||||||
|
|
Loading…
Reference in a new issue