mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:38:03 +00:00
472ab9ee15
Build it by default. This is commonly used by fpga targets. Signed-off-by: Joel Stanley <joel@jms.id.au> Reviewed-by: Masahiro Yamada <masahiroy@kernel.org> Signed-off-by: Stafford Horne <shorne@gmail.com>
11 lines
202 B
Makefile
11 lines
202 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for bootable kernel images
|
|
#
|
|
|
|
targets += vmlinux.bin
|
|
|
|
OBJCOPYFLAGS_vmlinux.bin := -O binary
|
|
$(obj)/vmlinux.bin: vmlinux FORCE
|
|
$(call if_changed,objcopy)
|