mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-19 16:02:36 +02:00
15 lines
325 B
C
15 lines
325 B
C
#include "bp_defs.h"
|
|
#include "boardparms.h"
|
|
#include "bcmSpiRes.h"
|
|
|
|
static bp_elem_t GT_10[] = {
|
|
{bp_cpBoardId, .u.cp = "GT10"},
|
|
{bp_last}
|
|
};
|
|
|
|
static bp_elem_t RT_AX9000[] = {
|
|
{bp_cpBoardId, .u.cp = "RTAX9000"},
|
|
{bp_last}
|
|
};
|
|
|
|
bp_elem_t * g_BoardParms[] = { GT_10, RT_AX9000, 0 };
|