mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 17:24:17 +08:00
7bc1e4d8d5
Add optional support to export the bootinfo used to boot the kernel in a "bootinfo" file in procfs. This is useful with kexec. This is based on the similar feature for ATAGS on ARM. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
28 lines
743 B
Makefile
28 lines
743 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
extra-$(CONFIG_AMIGA) := head.o
|
|
extra-$(CONFIG_ATARI) := head.o
|
|
extra-$(CONFIG_MAC) := head.o
|
|
extra-$(CONFIG_APOLLO) := head.o
|
|
extra-$(CONFIG_VME) := head.o
|
|
extra-$(CONFIG_HP300) := head.o
|
|
extra-$(CONFIG_Q40) := head.o
|
|
extra-$(CONFIG_SUN3X) := head.o
|
|
extra-$(CONFIG_SUN3) := sun3-head.o
|
|
extra-y += vmlinux.lds
|
|
|
|
obj-y := entry.o irq.o m68k_ksyms.o module.o process.o ptrace.o
|
|
obj-y += setup.o signal.o sys_m68k.o syscalltable.o time.o traps.o
|
|
|
|
obj-$(CONFIG_MMU_MOTOROLA) += ints.o vectors.o
|
|
obj-$(CONFIG_MMU_SUN3) += ints.o vectors.o
|
|
obj-$(CONFIG_PCI) += pcibios.o
|
|
|
|
obj-$(CONFIG_HAS_DMA) += dma.o
|
|
|
|
obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o
|
|
obj-$(CONFIG_BOOTINFO_PROC) += bootinfo_proc.o
|
|
|