diff options
author | Arjan van de Ven <arjan@linux.intel.com> | 2008-10-05 20:33:42 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-27 18:09:44 +0100 |
commit | 6784f7d0a5016a397d38be1134e63fc784c1ca8e (patch) | |
tree | 20fb39506d0ab28761e474d2fb2afc2970c9af9a /arch/x86/kernel/Makefile | |
parent | x86: corruption-check: fix some style issues (diff) | |
download | linux-6784f7d0a5016a397d38be1134e63fc784c1ca8e.tar.xz linux-6784f7d0a5016a397d38be1134e63fc784c1ca8e.zip |
x86: corruption check: move the corruption checks into their own file
Impact: cleanup
The corruption check code is rather sizable and it's likely to grow over
time when we add checks for more types of corruptions (there's a few
candidates in kerneloops.org that I want to add checks for)... so lets move
it to its own file
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/Makefile')
-rw-r--r-- | arch/x86/kernel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/Makefile b/arch/x86/kernel/Makefile index d7e5a58ee22f..31fbcaf3df70 100644 --- a/arch/x86/kernel/Makefile +++ b/arch/x86/kernel/Makefile @@ -35,6 +35,7 @@ obj-y += bootflag.o e820.o obj-y += pci-dma.o quirks.o i8237.o topology.o kdebugfs.o obj-y += alternative.o i8253.o pci-nommu.o obj-y += tsc.o io_delay.o rtc.o +obj-y += check.o obj-$(CONFIG_X86_TRAMPOLINE) += trampoline.o obj-y += process.o |