diff options
author | Andre Przywara <andre.przywara@arm.com> | 2014-11-14 15:54:08 +0000 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2014-11-25 13:46:36 +0000 |
commit | e039ee4ee3fcf174736f2cb0a2eed6cb908348a6 (patch) | |
tree | 65cb1ee1f7ad18726189954a4fd4d0f64420838a /arch/arm64/kernel/Makefile | |
parent | 930da09f5e50dd22fb0a8600388da8677d62d671 (diff) | |
download | op-kernel-dev-e039ee4ee3fcf174736f2cb0a2eed6cb908348a6.zip op-kernel-dev-e039ee4ee3fcf174736f2cb0a2eed6cb908348a6.tar.gz |
arm64: add alternative runtime patching
With a blatant copy of some x86 bits we introduce the alternative
runtime patching "framework" to arm64.
This is quite basic for now and we only provide the functions we need
at this time.
This is connected to the newly introduced feature bits.
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/kernel/Makefile')
-rw-r--r-- | arch/arm64/kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kernel/Makefile b/arch/arm64/kernel/Makefile index b36ebd0..591a65d 100644 --- a/arch/arm64/kernel/Makefile +++ b/arch/arm64/kernel/Makefile @@ -16,7 +16,7 @@ arm64-obj-y := cputable.o debug-monitors.o entry.o irq.o fpsimd.o \ entry-fpsimd.o process.o ptrace.o setup.o signal.o \ sys.o stacktrace.o time.o traps.o io.o vdso.o \ hyp-stub.o psci.o cpu_ops.o insn.o return_address.o \ - cpuinfo.o + cpuinfo.o alternative.o arm64-obj-$(CONFIG_COMPAT) += sys32.o kuser32.o signal32.o \ sys_compat.o \ |