From a48f7ba444fdd8598635fc0330631fb293f7818f Mon Sep 17 00:00:00 2001 From: Julien Grall Date: Mon, 13 Jan 2014 17:41:10 -0800 Subject: [PATCH] xen: move x86/xen/xenpv.c to dev/xen/bus/xenpv.c Minor changes are necessary to make this processor-independent, but moving the file out of x86 and into common is the first step (so others don't add /more/ x86-isms). Submitted by: Elliott Mitchell Reviewed by: royger Differential Revision: https://reviews.freebsd.org/D29042 --- sys/conf/files | 1 + sys/conf/files.x86 | 1 - sys/{x86/xen => dev/xen/bus}/xenpv.c | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename sys/{x86/xen => dev/xen/bus}/xenpv.c (100%) diff --git a/sys/conf/files b/sys/conf/files index 3d76d9909f77..efb0d4acac4a 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -3541,6 +3541,7 @@ dev/xdma/xdma_sglist.c optional xdma dev/xen/balloon/balloon.c optional xenhvm dev/xen/blkfront/blkfront.c optional xenhvm dev/xen/blkback/blkback.c optional xenhvm +dev/xen/bus/xenpv.c optional xenhvm dev/xen/console/xen_console.c optional xenhvm dev/xen/control/control.c optional xenhvm dev/xen/efi/pvefi.c optional xenhvm efirt diff --git a/sys/conf/files.x86 b/sys/conf/files.x86 index 2e30e33b4c48..b5bde6b87975 100644 --- a/sys/conf/files.x86 +++ b/sys/conf/files.x86 @@ -326,4 +326,3 @@ x86/x86/delay.c standard x86/xen/hvm.c optional xenhvm x86/xen/xen_intr.c optional xenhvm x86/xen/xen_apic.c optional xenhvm -x86/xen/xenpv.c optional xenhvm diff --git a/sys/x86/xen/xenpv.c b/sys/dev/xen/bus/xenpv.c similarity index 100% rename from sys/x86/xen/xenpv.c rename to sys/dev/xen/bus/xenpv.c