1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

broadcom-wl: add nvram stub to fix nas compile after the switch to unvram

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15439 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2009-04-27 14:18:34 +00:00
parent d7bc7f5ba2
commit 40efe09d28
2 changed files with 25 additions and 3 deletions

View 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;
}