Changes in 4.9.289 ARM: 9133/1: mm: proc-macros: ensure *_tlb_fns are 4B aligned ARM: 9134/1: remove duplicate memcpy() definition ARM: 9139/1: kprobes: fix arch_init_kprobes() prototype powerpc/bpf: Fix BPF_MOD when imm == 1 ARM: 8819/1: Remove '-p' from LDFLAGS usbnet: sanity check for maxpacket usbnet: fix error return code in usbnet_probe() ata: sata_mv: Fix the error handling of mv_chip_id() nfc: port100: fix using -ERRNO as command type mask Revert "net: mdiobus: Fix memory leak in __mdiobus_register" mmc: vub300: fix control-message timeouts mmc: dw_mmc: exynos: fix the finding clock sample value mmc: sdhci: Map more voltage level to SDHCI_POWER_330 net: lan78xx: fix division by zero in send path regmap: Fix possible double-free in regcache_rbtree_exit() net: batman-adv: fix error handling nios2: Make NIOS2_DTB_SOURCE_BOOL depend on !COMPILE_TEST net: nxp: lpc_eth.c: avoid hang when bringing interface down sctp: use init_tag from inithdr for ABORT chunk sctp: add vtag check in sctp_sf_violation Linux 4.9.289 Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Change-Id: Icfd29f0de9618f908f3272b0cc05c76ba36ac170
29 lines
764 B
Makefile
29 lines
764 B
Makefile
#
|
|
# linux/arch/arm/boot/bootp/Makefile
|
|
#
|
|
# This file is included by the global makefile so that you can add your own
|
|
# architecture-specific flags and dependencies.
|
|
#
|
|
|
|
GCOV_PROFILE := n
|
|
|
|
LDFLAGS_bootp := --no-undefined -X \
|
|
--defsym initrd_phys=$(INITRD_PHYS) \
|
|
--defsym params_phys=$(PARAMS_PHYS) -T
|
|
AFLAGS_initrd.o :=-DINITRD=\"$(INITRD)\"
|
|
|
|
targets := bootp init.o kernel.o initrd.o
|
|
|
|
# Note that bootp.lds picks up kernel.o and initrd.o
|
|
$(obj)/bootp: $(src)/bootp.lds $(addprefix $(obj)/,init.o kernel.o initrd.o) FORCE
|
|
$(call if_changed,ld)
|
|
|
|
# kernel.o and initrd.o includes a binary image using
|
|
# .incbin, a dependency which is not tracked automatically
|
|
|
|
$(obj)/kernel.o: arch/arm/boot/zImage FORCE
|
|
|
|
$(obj)/initrd.o: $(INITRD) FORCE
|
|
|
|
PHONY += $(INITRD)
|