diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-22 01:32:36 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-22 01:32:36 +0000 |
commit | aaa55ddf861074c6673cc05113ae4a84a4acea2c (patch) | |
tree | ac81205a613d1b86aedce5ae39bd113ca7fe91d6 /openwrt | |
parent | fe81993ab10a0e94d88d241cd47200011e917f59 (diff) |
fix v1/v4 bug in diag driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1969 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt')
-rw-r--r-- | openwrt/target/linux/package/diag/diag_led.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/target/linux/package/diag/diag_led.c b/openwrt/target/linux/package/diag/diag_led.c index cc2bc8a24e..8d4acd549f 100644 --- a/openwrt/target/linux/package/diag/diag_led.c +++ b/openwrt/target/linux/package/diag/diag_led.c @@ -170,8 +170,8 @@ static int __init diag_init() set_diag=ignore; set_dmz=ignore; - buf=nvram_get("boardrev"); - if (((board_type & 0xf00) == 0x400) && strcmp(buf,"0x10")) { + buf=nvram_get("pmon_ver") ?: ""; + if (((board_type & 0xf00) == 0x400) && (strncmp(buf, "CFE", 3) != 0)) { buf=nvram_get("boardtype")?:""; if (!strcmp(buf,"bcm94710dev")) { buf=nvram_get("boardnum")?:""; |