Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.3-rc5 19 lines 478 B view raw
1# SPDX-License-Identifier: GPL-2.0 2# 3# create a compressed vmlinux image from the original vmlinux 4# 5 6targets := vmlinux head.o misc.o piggy.o vmlinux.lds 7asflags-y := 8 9OBJECTS = $(obj)/head.o $(obj)/misc.o 10 11LDFLAGS_vmlinux := -T 12 13$(obj)/vmlinux: $(obj)/vmlinux.lds $(OBJECTS) $(obj)/piggy.o FORCE 14 $(call if_changed,ld) 15 16LDFLAGS_piggy.o := -r --format binary --oformat elf32-littlenios2 -T 17 18$(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/../vmlinux.gz FORCE 19 $(call if_changed,ld)