broadcom-wl: add nvram stub to fix nas compile after the switch to unvram
SVN-Revision: 15439
This commit is contained in:
16
package/broadcom-wl/src/nvram/nvram_stub.c
Normal file
16
package/broadcom-wl/src/nvram/nvram_stub.c
Normal file
@@ -0,0 +1,16 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
int nvram_set(const char *name, const char *value)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
char *nvram_get(const char *name)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int nvram_unset(const char *name)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
Reference in New Issue
Block a user