Note: You can remove the country suffix from the version string by redefining
EXTENSION.

user/dni/nvram_realtek.c

New NVRAM Parameters

1. Define the structure of the parameter.

user/boa/src/rtl865x/board.h

2. Add the new parameter to the main parameter structure to include it in the configuration set.

user/boa/src/rtl865x/board.h

#define OS_VERSION “V1.01.01 Custom”
#if 1
#ifdef EXTENSION
#undef EXTENSION
#endif
#define EXTENSION “”
#endif
typedef struct romeCfgParam_s
{
. . .
exampleParam_t exampleParam;
} romeCfgParam_t;
#define MAX_QUESTION_LENGTH 64
typedef struct exampleParam_s
{
char question[MAX_QUESTION_LENGTH];
int answer;
} exampleParam_t;