[package] prevent kmod-switch from accessing nvram on brcm63xx (#5035)
authorFlorian Fainelli <florian@openwrt.org>
Sat, 2 May 2009 10:01:09 +0000 (10:01 +0000)
committerFlorian Fainelli <florian@openwrt.org>
Sat, 2 May 2009 10:01:09 +0000 (10:01 +0000)
SVN-Revision: 15555

package/switch/src/switch-robo.c

index 21343edf0ae6f8bb3530d7cabbb87d121ea12261..95cb3e23f7d60c0d760466cb2c066775092d87d5 100644 (file)
 #define bool int
 #endif
 
 #define bool int
 #endif
 
-
+/* Only available on brcm-2.4/brcm47xx */
+#ifdef BROADCOM
 extern char *nvram_get(const char *name);
 #define getvar(str) (nvram_get(str)?:"")
 extern char *nvram_get(const char *name);
 #define getvar(str) (nvram_get(str)?:"")
+#else
+#define getvar(str) NULL
+#endif
 
 /* Data structure for a Roboswitch device. */
 struct robo_switch {
 
 /* Data structure for a Roboswitch device. */
 struct robo_switch {