1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-30 00:56:21 +03:00

[package] nvram: refuse nvram operations on the WGT634U

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16378 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2009-06-08 11:59:41 +00:00
parent 1dd065cce5
commit 95e79fe39e
2 changed files with 12 additions and 2 deletions

View File

@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=nvram
PKG_RELEASE:=4
PKG_RELEASE:=5
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)

View File

@ -411,8 +411,18 @@ char * nvram_find_mtd(void)
char dev[PATH_MAX];
char *path = NULL;
struct stat s;
int supported = 1;
if( (fp = fopen("/proc/mtd", "r")) )
/* Refuse any operation on the WGT634U */
if( (fp = fopen("/proc/diag/model", "r")) )
{
if( fgets(dev, sizeof(dev), fp) && !strncmp(dev, "Netgear WGT634U", 15) )
supported = 0;
fclose(fp);
}
if( supported && (fp = fopen("/proc/mtd", "r")) )
{
while( fgets(dev, sizeof(dev), fp) )
{