diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2017-01-21 10:58:16 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2017-01-21 10:58:16 +0000 |
commit | 2207e22fd65152f526df3978564e51192f07af7b (patch) | |
tree | 202d93502966308ac3dc067e0a8e1d118b34c01b /sys/arch/i386/conf | |
parent | ff6c5b2d728313569b09c4ec269eb7f0fb2023e3 (diff) |
Move virtio config from files.pci to files.pci
virtio itself is not PCI, it is a paravirtual bus on top of either PCI
or MMIO (arm). This is the first step of moving the virtio files to
dev/pv. No functional change.
arm kernel changes tested by jsg@ and patrick@
no objections from sf@ mlarkin@
Diffstat (limited to 'sys/arch/i386/conf')
-rw-r--r-- | sys/arch/i386/conf/files.i386 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/i386/conf/files.i386 b/sys/arch/i386/conf/files.i386 index efb759667b0..a170dd10547 100644 --- a/sys/arch/i386/conf/files.i386 +++ b/sys/arch/i386/conf/files.i386 @@ -1,4 +1,4 @@ -# $OpenBSD: files.i386,v 1.230 2016/10/21 06:20:58 mlarkin Exp $ +# $OpenBSD: files.i386,v 1.231 2017/01/21 10:58:15 reyk Exp $ # # new style config file for i386 architecture # @@ -91,6 +91,11 @@ file arch/i386/i386/codepatch.c #device mca at root {...} # +# Paravirtual device bus +# +include "dev/pv/files.pv" + +# # PCI-only drivers # XXX MUST BE INCLUDED BEFORE files.isa, as long as files.isa attaches # XXX devices to 'pci'. @@ -401,11 +406,6 @@ file arch/i386/i386/vmm_support.S vmm # attach ipmi at mainbus -# -# Paravirtual device bus -# -include "dev/pv/files.pv" - # Dell Embedded Systems Management device esm attach esm at mainbus |