From 1f14c4b2da1ee0f5d08a1ae92097ecf7df93d109 Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Fri, 22 Apr 2016 19:40:02 +0100 Subject: [PATCH] Move arch/x86/hvm_pagetables.S into arch/x86/hvm/ directory This is a more appropriate place for it to live. Signed-off-by: Andrew Cooper --- arch/x86/{hvm_pagetables.S => hvm/pagetables.S} | 0 build/files.mk | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename arch/x86/{hvm_pagetables.S => hvm/pagetables.S} (100%) diff --git a/arch/x86/hvm_pagetables.S b/arch/x86/hvm/pagetables.S similarity index 100% rename from arch/x86/hvm_pagetables.S rename to arch/x86/hvm/pagetables.S diff --git a/build/files.mk b/build/files.mk index 65b32b8..f411c8a 100644 --- a/build/files.mk +++ b/build/files.mk @@ -23,7 +23,7 @@ obj-perenv += $(ROOT)/arch/x86/hypercall_page.o # HVM specific objects -obj-hvm += $(ROOT)/arch/x86/hvm_pagetables.o +obj-hvm += $(ROOT)/arch/x86/hvm/pagetables.o obj-hvm += $(ROOT)/arch/x86/hvm/traps.o $(foreach env,$(HVM_ENVIRONMENTS),$(eval obj-$(env) += $(obj-hvm))) -- 2.39.5