Download Print this page

NETGEAR KWGR614 User Manual page 7

Opensource wireless-g router
Hide thumbs Also See for KWGR614:

Advertisement

#define OS_VERSION "V1.01.01 Custom"
Note: You can remove the country suffix from the version string by redefining
EXTENSION.
user/dni/nvram_realtek.c
#if 1
#ifdef EXTENSION
#undef EXTENSION
#endif
#define EXTENSION ""
#endif
New NVRAM Parameters
1. Define the structure of the parameter.
user/boa/src/rtl865x/board.h
#define MAX_QUESTION_LENGTH 64
typedef struct exampleParam_s
{
char question[MAX_QUESTION_LENGTH];
int answer;
} exampleParam_t;
2. Add the new parameter to the main parameter structure to include it in the
configuration set.
user/boa/src/rtl865x/board.h
typedef struct romeCfgParam_s
{
. . .
exampleParam_t exampleParam;
} romeCfgParam_t;

Advertisement

loading