1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-23 23:46:16 +02: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

@ -100,7 +100,6 @@ endef
define Package/wl
$(call Package/broadcom-wl/Default)
DEPENDS+= +nvram
TITLE:=Proprietary Broadcom wl driver config utility
endef
@ -111,7 +110,6 @@ endef
define Package/nas
$(call Package/broadcom-wl/Default)
DEPENDS+= +nvram
TITLE:=Proprietary Broadcom WPA/WPA2 authenticator
endef
@ -150,17 +148,25 @@ define Build/Compile
$(if $(WL_WEXT),WL_WEXT=1) \
modules
# NVRAM stub
$(TARGET_CC) $(TARGET_CFLAGS) -c -o $(PKG_BUILD_DIR)/nvram/nvram_stub.o $(PKG_BUILD_DIR)/nvram/nvram_stub.c
# Compile wlc
$(MAKE) -C $(PKG_BUILD_DIR)/wlc \
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS)" \
all
# Compile libshared
$(MAKE) -C $(PKG_BUILD_DIR)/router/shared \
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS) -I. -I$(PKG_BUILD_DIR)/include -Dlinux=1" \
all
$(TARGET_CC) -o $(PKG_BUILD_DIR)/nas $(PKG_BUILD_DIR)/nas_exe.o $(TARGET_LDFLAGS) -lnvram $(PKG_BUILD_DIR)/router/shared/libshared.a
$(TARGET_CC) -o $(PKG_BUILD_DIR)/nas \
$(PKG_BUILD_DIR)/nas_exe.o \
$(PKG_BUILD_DIR)/nvram/nvram_stub.o \
$(TARGET_LDFLAGS) \
$(PKG_BUILD_DIR)/router/shared/libshared.a
$(TARGET_CC) -o $(PKG_BUILD_DIR)/wl $(PKG_BUILD_DIR)/wl_exe.o
endef

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