summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorjmcneill <jmcneill@NetBSD.org>2009-01-09 21:14:36 +0000
committerjmcneill <jmcneill@NetBSD.org>2009-01-09 21:14:36 +0000
commitdf68862dbf6be274286920502140efccdc5ec1ff (patch)
tree54ed762c0a61146288ee42ed7ccfe040da1a5601 /sys/dev
parent0370399da027b6037e957d09c4ae7ce2df6fdcce (diff)
Make the "EULA not accepted" message a bit more informative, now reads:
EULA not accepted; please see the <driver>(4) man page.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_ipw.c6
-rw-r--r--sys/dev/pci/if_iwi.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/pci/if_ipw.c b/sys/dev/pci/if_ipw.c
index f923e67c543..a7a487ff1f4 100644
--- a/sys/dev/pci/if_ipw.c
+++ b/sys/dev/pci/if_ipw.c
@@ -1,4 +1,4 @@
-/* $NetBSD: if_ipw.c,v 1.44 2008/11/07 14:58:27 joerg Exp $ */
+/* $NetBSD: if_ipw.c,v 1.45 2009/01/09 21:14:36 jmcneill Exp $ */
/* FreeBSD: src/sys/dev/ipw/if_ipw.c,v 1.15 2005/11/13 17:17:40 damien Exp */
/*-
@@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_ipw.c,v 1.44 2008/11/07 14:58:27 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ipw.c,v 1.45 2009/01/09 21:14:36 jmcneill Exp $");
/*-
* Intel(R) PRO/Wireless 2100 MiniPCI driver
@@ -1879,7 +1879,7 @@ ipw_cache_firmware(struct ipw_softc *sc)
if (ipw_accept_eula == 0) {
aprint_error_dev(&sc->sc_dev,
- "EULA not accepted, see hw.ipw.accept_eula\n");
+ "EULA not accepted; please see the ipw(4) man page.\n");
return EPERM;
}
diff --git a/sys/dev/pci/if_iwi.c b/sys/dev/pci/if_iwi.c
index 98d24cc5745..34c8b5ed911 100644
--- a/sys/dev/pci/if_iwi.c
+++ b/sys/dev/pci/if_iwi.c
@@ -1,4 +1,4 @@
-/* $NetBSD: if_iwi.c,v 1.77 2008/11/10 18:05:12 joerg Exp $ */
+/* $NetBSD: if_iwi.c,v 1.78 2009/01/09 21:14:36 jmcneill Exp $ */
/*-
* Copyright (c) 2004, 2005
@@ -28,7 +28,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_iwi.c,v 1.77 2008/11/10 18:05:12 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_iwi.c,v 1.78 2009/01/09 21:14:36 jmcneill Exp $");
/*-
* Intel(R) PRO/Wireless 2200BG/2225BG/2915ABG driver
@@ -2159,7 +2159,7 @@ iwi_cache_firmware(struct iwi_softc *sc)
if (iwi_accept_eula == 0) {
aprint_error_dev(sc->sc_dev,
- "EULA not accepted, can't load firmware\n");
+ "EULA not accepted; please see the iwi(4) man page.\n");
return EPERM;
}