diff options
author | gallatin <gallatin@FreeBSD.org> | 2002-02-12 00:26:06 +0000 |
---|---|---|
committer | gallatin <gallatin@FreeBSD.org> | 2002-02-12 00:26:06 +0000 |
commit | 1e9b142f057cb83c192f14b46c2be0501900710c (patch) | |
tree | 3256d68e5c8390073280fa63e1097037ea6411a3 | |
parent | 57d5032c484cfda9ea856603f70ad12ca8e3af82 (diff) | |
download | FreeBSD-src-1e9b142f057cb83c192f14b46c2be0501900710c.zip FreeBSD-src-1e9b142f057cb83c192f14b46c2be0501900710c.tar.gz |
Enable polling to be configured into kernels on non i386 platforms. Note that
poll_in_trap is only implemented on i386. I've tested this on alpha.
Approved by: luigi
-rw-r--r-- | sys/conf/files | 1 | ||||
-rw-r--r-- | sys/conf/files.i386 | 1 | ||||
-rw-r--r-- | sys/conf/options | 3 | ||||
-rw-r--r-- | sys/conf/options.i386 | 5 |
4 files changed, 4 insertions, 6 deletions
diff --git a/sys/conf/files b/sys/conf/files index 76f252c..c662a06 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -771,6 +771,7 @@ kern/kern_clock.c standard kern/kern_condvar.c standard kern/kern_conf.c standard kern/kern_descrip.c standard +kern/kern_poll.c optional device_polling kern/kern_environment.c standard kern/kern_event.c standard kern/kern_exec.c standard diff --git a/sys/conf/files.i386 b/sys/conf/files.i386 index e2f40eb..1aac8fc 100644 --- a/sys/conf/files.i386 +++ b/sys/conf/files.i386 @@ -396,7 +396,6 @@ isa/syscons_isa.c optional sc isa/vga_isa.c optional vga kern/imgact_aout.c standard kern/imgact_gzip.c optional gzip -kern/kern_poll.c optional device_polling kern/link_aout.c standard kern/md4c.c optional netsmb kern/subr_diskmbr.c standard diff --git a/sys/conf/options b/sys/conf/options index ef111b5..5692e17 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -527,3 +527,6 @@ DEV_BPF opt_bpf.h # ed driver ED_NO_MIIBUS opt_ed.h + +# Polling device handling +DEVICE_POLLING opt_global.h diff --git a/sys/conf/options.i386 b/sys/conf/options.i386 index 90b29c8..e40bc60 100644 --- a/sys/conf/options.i386 +++ b/sys/conf/options.i386 @@ -208,10 +208,5 @@ NETSMBCRYPTO opt_netsmb.h SMBFS # ------------------------------- -# Polling device handling -# ------------------------------- -DEVICE_POLLING opt_global.h - -# ------------------------------- # EOF # ------------------------------- |