Fix routeboard board detection, add some new ZyXEL boards, thanks to Gabor Juhos

SVN-Revision: 7214
This commit is contained in:
Florian Fainelli
2007-05-13 21:56:34 +00:00
parent e0f95a2d50
commit 610421f87a
3 changed files with 148 additions and 54 deletions

View File

@@ -14,6 +14,25 @@
#ifndef _ROUTERBOOT_H
#define _ROUTERBOOT_H
#define RB_MAC_SIZE 6
#define RB_MAX_MAC_COUNT 6
struct rb_bios_settings {
u32 hs_offs; /* hard settings offset */
u32 hs_size; /* hard settings size */
u32 fw_offs; /* firmware offset */
u32 ss_offs; /* soft settings offset */
u32 ss_size; /* soft settings size */
};
struct rb_hard_settings {
char *name; /* board name */
char *bios_ver; /* BIOS version */
u32 mem_size; /* memory size in bytes */
u32 mac_count; /* number of mac addresses */
u8 macs[RB_MAC_SIZE][RB_MAX_MAC_COUNT]; /* mac addresses */
};
/*
* Magic numbers
*/