diff options
-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 # ------------------------------- |