diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-01-23 06:03:00 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-01-23 06:03:00 +0000 |
commit | d0a5fa42f1b6ebc23d23f9c1ba8eafa468923561 (patch) | |
tree | 263e53231c7486b99b42d7dcf3a7615869a75fb2 /usr.sbin/config/sem.h | |
parent | 0d359a25c5e8b08e0beec6bc5d040d7bb39b8f3b (diff) |
Allow entries like "foo at bar enable", which override previous
entries like "foo bar bar disable"; useful for kernel config lamers
like myself who don't like to use 'config -e' or 'bsd -c' to manually
enable USB. Tested with uhci/ohci on i386.
Diffstat (limited to 'usr.sbin/config/sem.h')
-rw-r--r-- | usr.sbin/config/sem.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/config/sem.h b/usr.sbin/config/sem.h index 3dd75d4e745..64949806b40 100644 --- a/usr.sbin/config/sem.h +++ b/usr.sbin/config/sem.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sem.h,v 1.6 1997/01/18 02:24:20 briggs Exp $ */ +/* $OpenBSD: sem.h,v 1.7 2001/01/23 06:02:59 angelos Exp $ */ /* $NetBSD: sem.h,v 1.6 1996/11/11 23:40:10 gwr Exp $ */ /* @@ -61,6 +61,7 @@ void setmajor __P((struct devbase *d, int n)); void addconf __P((struct config *)); void setconf __P((struct nvlist **, const char *, struct nvlist *)); void adddev __P((const char *, const char *, struct nvlist *, int, int)); +void enabledev __P((const char *, const char *)); void addpseudo __P((const char *name, int number)); const char *ref __P((const char *name)); const char *starref __P((const char *name)); |