diff options
author | 2007-05-29 04:10:15 +0000 | |
---|---|---|
committer | 2007-05-29 04:10:15 +0000 | |
commit | a2eb3c5f3f33436b520beaa99bfee24f39c342a0 (patch) | |
tree | 45a4f761410bae81604316ea194b90cbbae8fd5b | |
parent | New driver for front panel LEDs on the V215/245. (diff) | |
download | wireguard-openbsd-a2eb3c5f3f33436b520beaa99bfee24f39c342a0.tar.xz wireguard-openbsd-a2eb3c5f3f33436b520beaa99bfee24f39c342a0.zip |
Add led(4).
-rw-r--r-- | sys/arch/sparc64/conf/GENERIC | 3 | ||||
-rw-r--r-- | sys/arch/sparc64/conf/files.sparc64 | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/sys/arch/sparc64/conf/GENERIC b/sys/arch/sparc64/conf/GENERIC index daaa989426b..8d72b2199ee 100644 --- a/sys/arch/sparc64/conf/GENERIC +++ b/sys/arch/sparc64/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.178 2007/05/26 20:44:58 dlg Exp $ +# $OpenBSD: GENERIC,v 1.179 2007/05/29 04:10:15 kettenis Exp $ # # For further information on compiling OpenBSD kernels, see the config(8) # man page. @@ -239,6 +239,7 @@ bpp* at sbus? lpt* at ebus? bbc* at ebus? +led* at ebus? pmc* at ebus? ppm* at ebus? diff --git a/sys/arch/sparc64/conf/files.sparc64 b/sys/arch/sparc64/conf/files.sparc64 index a4d1c9ddef4..9a76039f067 100644 --- a/sys/arch/sparc64/conf/files.sparc64 +++ b/sys/arch/sparc64/conf/files.sparc64 @@ -1,4 +1,4 @@ -# $OpenBSD: files.sparc64,v 1.83 2007/05/28 23:10:10 beck Exp $ +# $OpenBSD: files.sparc64,v 1.84 2007/05/29 04:10:15 kettenis Exp $ # $NetBSD: files.sparc64,v 1.50 2001/08/10 20:53:50 eeh Exp $ # maxpartitions must be first item in files.${ARCH} @@ -142,6 +142,10 @@ device beep attach beep at ebus file arch/sparc64/dev/beep.c beep +device led +attach led at ebus +file arch/sparc64/dev/led.c led + device pmc attach pmc at ebus file arch/sparc64/dev/pmc.c pmc |