From 11df803da3da2491748ebd1c5ab92d57b1ce96cd Mon Sep 17 00:00:00 2001 From: Yin Fengwei Date: Thu, 7 Jun 2018 11:44:46 +0800 Subject: [PATCH] hv: rename cpu_secondary.S to trampline.S We will reuse this part of code for: - AP bootup - BSP wakeup from S3 Signed-off-by: Yin Fengwei Acked-by: Anthony Xu Acked-by: Eddie Dong --- hypervisor/Makefile | 2 +- hypervisor/arch/x86/{cpu_secondary.S => trampline.S} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename hypervisor/arch/x86/{cpu_secondary.S => trampline.S} (100%) diff --git a/hypervisor/Makefile b/hypervisor/Makefile index cb9d4acf1..2aadfcce9 100644 --- a/hypervisor/Makefile +++ b/hypervisor/Makefile @@ -82,7 +82,7 @@ C_SRCS += boot/acpi.c C_SRCS += boot/dmar_parse.c C_SRCS += arch/x86/ioapic.c C_SRCS += arch/x86/intr_lapic.c -S_SRCS += arch/x86/cpu_secondary.S +S_SRCS += arch/x86/trampline.S C_SRCS += arch/x86/cpu.c C_SRCS += arch/x86/softirq.c C_SRCS += arch/x86/cpuid.c diff --git a/hypervisor/arch/x86/cpu_secondary.S b/hypervisor/arch/x86/trampline.S similarity index 100% rename from hypervisor/arch/x86/cpu_secondary.S rename to hypervisor/arch/x86/trampline.S