From: Andreas Kölbl <[email protected]> Add the suffix -stubs to smp.c to make it more obvious that the file only contains stubs. Use a consistent naming for stubs (cf. cat-stubs).
Signed-off-by: Andreas Kölbl <[email protected]> --- hypervisor/arch/arm/Makefile | 2 +- hypervisor/arch/arm/{smp.c => smp-stubs.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename hypervisor/arch/arm/{smp.c => smp-stubs.c} (100%) diff --git a/hypervisor/arch/arm/Makefile b/hypervisor/arch/arm/Makefile index 87805cd..f073926 100644 --- a/hypervisor/arch/arm/Makefile +++ b/hypervisor/arch/arm/Makefile @@ -19,7 +19,7 @@ always := built-in.o COMMON := ../arm-common obj-y := entry.o exception.o setup.o control.o traps.o mmio.o -obj-y += mmu_hyp.o caches.o smp.o +obj-y += mmu_hyp.o caches.o smp-stubs.o obj-y += $(COMMON)/dbg-write.o $(COMMON)/lib.o $(COMMON)/psci.o obj-y += $(COMMON)/paging.o $(COMMON)/mmu_cell.o obj-y += $(COMMON)/irqchip.o $(COMMON)/gic-common.o diff --git a/hypervisor/arch/arm/smp.c b/hypervisor/arch/arm/smp-stubs.c similarity index 100% rename from hypervisor/arch/arm/smp.c rename to hypervisor/arch/arm/smp-stubs.c -- 2.10.0 -- You received this message because you are subscribed to the Google Groups "Jailhouse" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
