mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-11 17:34:57 +00:00
nvram: drop check for WGT634U using /proc/diag/model
We don't have broadcom-diag for months or years now and the correct solution is to simply don't have "nvram" partition on WGT634U anyway. Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 45564
This commit is contained in:
parent
0c4c05f0e7
commit
d94fb398f6
@ -427,18 +427,8 @@ char * nvram_find_mtd(void)
|
|||||||
char dev[PATH_MAX];
|
char dev[PATH_MAX];
|
||||||
char *path = NULL;
|
char *path = NULL;
|
||||||
struct stat s;
|
struct stat s;
|
||||||
int supported = 1;
|
|
||||||
|
|
||||||
/* Refuse any operation on the WGT634U */
|
if ((fp = fopen("/proc/mtd", "r")))
|
||||||
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) )
|
while( fgets(dev, sizeof(dev), fp) )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user