Searched refs:vmlinux (Results 1 - 25 of 247) sorted by last modified time

12345678910

/linux-master/tools/testing/selftests/bpf/progs/
H A Dmap_kptr.c2 #include <vmlinux.h>
H A Dverifier_kfunc_prog_types.c4 #include <vmlinux.h>
H A Dverifier_global_subprogs.c4 #include <vmlinux.h>
/linux-master/scripts/
H A DMakefile.vmlinux4 __default: vmlinux
21 targets += .vmlinux.export.o
22 vmlinux: .vmlinux.export.o
27 # Final link of vmlinux with optional arch pass after final link
32 targets += vmlinux
33 vmlinux: scripts/link-vmlinux.sh vmlinux.o $(KBUILD_LDS) FORCE
H A DMakefile.modfinal41 if [ ! -f vmlinux ]; then \
42 printf "Skipping BTF generation for %s due to unavailability of vmlinux\n" $@ 1>&2; \
44 LLVM_OBJCOPY="$(OBJCOPY)" $(PAHOLE) -J $(PAHOLE_FLAGS) --btf_base vmlinux $@; \
45 $(RESOLVE_BTFIDS) -b vmlinux $@; \
56 # Re-generate module BTFs if either module's .ko or vmlinux changed
57 %.ko: %.o %.mod.o scripts/module.lds $(and $(CONFIG_DEBUG_INFO_BTF_MODULES),$(KBUILD_BUILTIN),vmlinux) FORCE
58 +$(call if_changed_except,ld_ko_o,vmlinux)
H A DMakefile.modpost70 # Generate the list of in-tree objects in vmlinux
75 vmlinux.symvers Module.symvers: .vmlinux.objs
91 targets += .vmlinux.objs
92 .vmlinux.objs: vmlinux.a $(KBUILD_VMLINUX_LIBS) FORCE
102 ifeq ($(wildcard vmlinux.o),)
103 missing-input := vmlinux.o
106 modpost-args += vmlinux.o
107 modpost-deps += vmlinux
[all...]
/linux-master/samples/hid/
H A DMakefile165 VMLINUX_BTF_PATHS ?= $(abspath $(if $(O),$(O)/vmlinux)) \
166 $(abspath $(if $(KBUILD_OUTPUT),$(KBUILD_OUTPUT)/vmlinux)) \
167 $(abspath ./vmlinux)
170 $(obj)/vmlinux.h: $(VMLINUX_BTF) $(BPFTOOL)
173 $(error Cannot find a vmlinux for VMLINUX_BTF at any of "$(VMLINUX_BTF_PATHS)",\
181 clean-files += vmlinux.h
199 $(obj)/%.bpf.o: $(src)/%.bpf.c $(EXTRA_BPF_HEADERS_SRC) $(obj)/vmlinux.h
/linux-master/samples/bpf/
H A DMakefile331 VMLINUX_BTF_PATHS ?= $(abspath $(if $(O),$(O)/vmlinux)) \
332 $(abspath $(if $(KBUILD_OUTPUT),$(KBUILD_OUTPUT)/vmlinux)) \
333 $(abspath ./vmlinux)
336 $(obj)/vmlinux.h: $(VMLINUX_BTF) $(BPFTOOL)
339 $(error Cannot find a vmlinux for VMLINUX_BTF at any of "$(VMLINUX_BTF_PATHS)",\
340 build the kernel or set VMLINUX_BTF like "VMLINUX_BTF=/sys/kernel/btf/vmlinux" or VMLINUX_H variable)
347 clean-files += vmlinux.h
365 $(obj)/%.bpf.o: $(src)/%.bpf.c $(obj)/vmlinux.h $(src)/xdp_sample.bpf.h $(src)/xdp_sample_shared.h
/linux-master/arch/x86/kernel/
H A DMakefile6 extra-y += vmlinux.lds
/linux-master/arch/x86/boot/compressed/
H A DMakefile5 # create a compressed vmlinux image from the original vmlinux
10 # vmlinux.bin.(gz|bz2|lzma|...)
12 # vmlinux.bin is:
13 # vmlinux stripped of debugging and comments
14 # vmlinux.bin.all is:
15 # vmlinux.bin + vmlinux.relocs
16 # vmlinux.bin.(gz|bz2|lzma|...) is:
18 # compressed vmlinux
[all...]
/linux-master/arch/x86/boot/
H A DMakefile19 targets := vmlinux.bin setup.bin setup.elf bzImage
65 cmd_image = $(obj)/tools/build $(obj)/setup.bin $(obj)/vmlinux.bin \
68 $(obj)/bzImage: $(obj)/setup.bin $(obj)/vmlinux.bin $(obj)/tools/build FORCE
73 $(obj)/vmlinux.bin: $(obj)/compressed/vmlinux FORCE
84 $(obj)/zoffset.h: $(obj)/compressed/vmlinux FORCE
99 $(obj)/compressed/vmlinux: FORCE
/linux-master/arch/um/kernel/
H A DMakefile15 extra-y := vmlinux.lds
/linux-master/arch/sh/boot/compressed/
H A DMakefile5 # create a compressed vmlinux image from the original vmlinux
11 targets := vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 \
12 vmlinux.bin.lzma vmlinux.bin.xz vmlinux.bin.lzo $(OBJECTS)
31 -T $(obj)/../../kernel/vmlinux
[all...]
/linux-master/arch/riscv/boot/
H A DMakefile29 $(obj)/xipImage: vmlinux FORCE
36 vmlinux.relocs: vmlinux
37 @ (! [ -f vmlinux.relocs ] && echo "vmlinux.relocs can't be found, please remove vmlinux and try again") || true
39 $(obj)/Image: vmlinux.relocs FORCE
41 $(obj)/Image: vmlinux FORCE
/linux-master/arch/powerpc/boot/
H A DMakefile281 vmlinux
395 $(obj)/zImage.initrd.%: vmlinux $(wrapperbits) FORCE
398 $(addprefix $(obj)/, $(sort $(filter zImage.%, $(image-y)))): vmlinux $(wrapperbits) FORCE
402 $(obj)/dtbImage.initrd.%: vmlinux $(wrapperbits) $(obj)/dts/%.dtb FORCE
405 $(obj)/dtbImage.%: vmlinux $(wrapperbits) $(obj)/dts/%.dtb FORCE
410 $(obj)/vmlinux.strip: vmlinux
413 $(obj)/uImage: vmlinux $(wrapperbits) FORCE
416 $(obj)/uImage.initrd.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
419 $(obj)/uImage.%: vmlinux
[all...]
H A Dmain.c101 static struct addr_range prep_initrd(struct addr_range vmlinux, void *chosen, argument
126 if (initrd_addr < vmlinux.size) {
150 static void prep_esm_blob(struct addr_range vmlinux, void *chosen) argument
168 if (esm_blob_addr < vmlinux.size) {
186 static inline void prep_esm_blob(struct addr_range vmlinux, void *chosen) { } argument
190 * edit the command line passed to vmlinux (by setting /chosen/bootargs).
229 struct addr_range vmlinux, initrd; local
254 vmlinux = prep_kernel();
255 initrd = prep_initrd(vmlinux, chosen,
257 prep_esm_blob(vmlinux, chose
[all...]
/linux-master/arch/parisc/boot/compressed/
H A DMakefile5 # create a compressed self-extracting vmlinux image from the original vmlinux
9 targets := vmlinux.lds vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2
10 targets += vmlinux.bin.xz vmlinux.bin.lzma vmlinux
[all...]
/linux-master/arch/mips/boot/compressed/
H A DMakefile54 targets += vmlinux.bin
58 $(obj)/vmlinux.bin: $(KBUILD_IMAGE) FORCE
69 targets += vmlinux.bin.z
71 $(obj)/vmlinux.bin.z: $(obj)/vmlinux.bin FORCE
76 OBJCOPYFLAGS_piggy.o := --add-section=.image=$(obj)/vmlinux.bin.z \
79 $(obj)/piggy.o: $(obj)/dummy.o $(obj)/vmlinux.bin.z FORCE
95 $(obj)/vmlinux.bin $(LINKER_LOAD_ADDRESS))
/linux-master/arch/arm/boot/compressed/
H A DMakefile5 # create a compressed vmlinuz image from the original vmlinux
91 targets := vmlinux vmlinux.lds piggy_data piggy.o \
103 KBSS_SZ = $(shell echo $$(($$($(NM) vmlinux | \
147 $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.o \
/linux-master/arch/arm/boot/
H A DMakefile38 $(obj)/xipImage: vmlinux FORCE
53 $(obj)/Image: vmlinux FORCE
56 $(obj)/compressed/vmlinux: $(obj)/Image FORCE
59 $(obj)/zImage: $(obj)/compressed/vmlinux FORCE
/linux-master/
H A DMakefile32 # turn into vmlinux), we will call a sub make in that other dir, and
699 # Build targets only - this includes vmlinux, arch-specific targets, clean
743 # Objects we will link into vmlinux / subdirs we need to visit
752 # Defaults to vmlinux, but the arch makefile usually adds further targets
753 all: vmlinux
1076 export KBUILD_IMAGE ?= vmlinux
1115 # Externally visible symbols (used by link-vmlinux.sh)
1126 export KBUILD_LDS := arch/$(SRCARCH)/kernel/vmlinux.lds
1141 targets += vmlinux.a
1142 vmlinux
[all...]
/linux-master/arch/powerpc/kernel/
H A DMakefile130 extra-y += vmlinux.lds
218 clean-files := vmlinux.lds
/linux-master/arch/powerpc/
H A DMakefile232 $(BOOT_TARGETS1): vmlinux
234 $(BOOT_TARGETS2): vmlinux
/linux-master/arch/loongarch/kernel/
H A DMakefile8 extra-y := vmlinux.lds
/linux-master/tools/testing/selftests/rcutorture/bin/
H A Dtorture.sh630 # KASAN vmlinux files can approach 1GB in size, so compress them.
642 find $i -name 'vmlinux*' -print
648 echo Compressing vmlinux files in ${i}: `date` >> "$tdir/log-xz" 2>&1
649 for j in $i/*/vmlinux
670 # vmlinux files from corresponding scenarios.
671 echo Linking vmlinux.xz files to re-use scenarios `date` | tee -a "$tdir/log-xz" | tee -a $T/log
676 find . -name vmlinux -print > $T/xz-todo-copy-vmlinux
677 for v in `cat $T/xz-todo-copy-vmlinux`

Completed in 479 milliseconds

12345678910