diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2008-05-19 22:13:35 +0900 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2008-05-27 14:46:28 -0700 |
commit | 1e39d80a5957eab9dfdd7490d5c5cee272c34aa7 (patch) | |
tree | 7e07e35c7424418ca0406ba948eb137db9a917e5 /arch/ia64 | |
parent | 1ff730b52f0c3e4e3846c3ff345c5526b2633ba9 (diff) | |
download | kernel_samsung_tuna-1e39d80a5957eab9dfdd7490d5c5cee272c34aa7.zip kernel_samsung_tuna-1e39d80a5957eab9dfdd7490d5c5cee272c34aa7.tar.gz kernel_samsung_tuna-1e39d80a5957eab9dfdd7490d5c5cee272c34aa7.tar.bz2 |
[IA64] pvops: preparation for paravirtulization of hand written assembly code.
Preparation for paravirtualization of hand written assembly code.
They are paravirtualized by single source code and compiled multi times.
To tell those files for target (including native), add one defines.
Cc: "Dong, Eddie" <eddie.dong@intel.com>
Cc: Keith Owens <kaos@ocs.com.au>
Cc: tgingold@free.fr
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/kernel/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/ia64/kernel/Makefile b/arch/ia64/kernel/Makefile index 10a4ddb..8b25242 100644 --- a/arch/ia64/kernel/Makefile +++ b/arch/ia64/kernel/Makefile @@ -72,3 +72,12 @@ $(obj)/gate-syms.o: $(obj)/gate.lds $(obj)/gate.o FORCE # We must build gate.so before we can assemble it. # Note: kbuild does not track this dependency due to usage of .incbin $(obj)/gate-data.o: $(obj)/gate.so + +# +# native ivt.S and entry.S +# +ASM_PARAVIRT_OBJS = ivt.o entry.o +define paravirtualized_native +AFLAGS_$(1) += -D__IA64_ASM_PARAVIRTUALIZED_NATIVE +endef +$(foreach obj,$(ASM_PARAVIRT_OBJS),$(eval $(call paravirtualized_native,$(obj)))) |