Searched refs:vmlinux (Results 26 - 50 of 240) sorted by relevance

12345678910

/linux-master/scripts/
H A DMakefile.vmlinux_o4 __default: vmlinux.o modules.builtin.modinfo modules.builtin
21 vmlinux.a $(KBUILD_VMLINUX_LIBS) FORCE
30 # objtool for vmlinux.o
34 # Run everything on vmlinux instead.
38 vmlinux-objtool-args-$(delay-objtool) += $(objtool-args-y)
39 vmlinux-objtool-args-$(CONFIG_GCOV_KERNEL) += --no-unreachable
40 vmlinux-objtool-args-$(CONFIG_NOINSTR_VALIDATION) += --noinstr \
43 objtool-args = $(vmlinux-objtool-args-y) --link
45 # Link of vmlinux.o used for section mismatch analysis
52 --whole-archive vmlinux
[all...]
H A Dextract-sys-certs.pl9 die "Format: $0 [-s <systemmap-file>] <vmlinux-file> <keyring-file>\n"
20 my $vmlinux = $ARGV[0];
24 # Parse the vmlinux section table
26 open FD, "objdump -h $vmlinux |" || die $vmlinux;
28 close(FD) || die $vmlinux;
54 # Try and parse the vmlinux symbol table. If the vmlinux file has been created
55 # from a vmlinuz file with extract-vmlinux then the symbol table will be empty.
57 open FD, "nm $vmlinux
[all...]
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...]
H A Dlink-vmlinux.sh4 # link vmlinux
6 # vmlinux is linked from the objects in vmlinux.a and $(KBUILD_VMLINUX_LIBS).
7 # vmlinux.a contains objects that are linked unconditionally.
11 # vmlinux
14 # +--< vmlinux.a
21 # vmlinux version (uname -v) cannot be updated during normal
23 # update vmlinux.
24 # Therefore this step is delayed until just before final link of vmlinux.
46 # Link of vmlinux
[all...]
H A DMakefile.modfinal39 if [ ! -f vmlinux ]; then \
40 printf "Skipping BTF generation for %s due to unavailability of vmlinux\n" $@ 1>&2; \
42 LLVM_OBJCOPY="$(OBJCOPY)" $(PAHOLE) -J $(PAHOLE_FLAGS) --btf_base vmlinux $@; \
43 $(RESOLVE_BTFIDS) -b vmlinux $@; \
54 # Re-generate module BTFs if either module's .ko or vmlinux changed
55 %.ko: %.o %.mod.o scripts/module.lds $(and $(CONFIG_DEBUG_INFO_BTF_MODULES),$(KBUILD_BUILTIN),vmlinux) FORCE
56 +$(call if_changed_except,ld_ko_o,vmlinux)
/linux-master/arch/s390/boot/
H A Dvmlinux.lds.S2 #include <asm-generic/vmlinux.lds.h>
3 #include <asm/vmlinux.lds.h>
83 * struct vmlinux_info. It comes from .vmlinux.info section of
84 * uncompressed vmlinux in a form of info.o
87 .vmlinux.info : {
89 *(.vmlinux.info)
109 *(.vmlinux.bin.compressed)
116 * uncompressed vmlinux.bin is positioned in the bzImage decompressor
118 * executed in-place. However, the size of .vmlinux.relocs could be
120 * address 0x100000. To address this issue, .vmlinux
[all...]
/linux-master/arch/sh/boot/romimage/
H A DMakefile8 targets := vmlinux head.o zeropage.bin piggy.o
17 -T $(obj)/../../kernel/vmlinux.lds
19 $(obj)/vmlinux: $(obj)/head.o $(obj-y) $(obj)/piggy.o FORCE
24 $(obj)/zeropage.bin: vmlinux FORCE
29 $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/zeropage.bin arch/sh/boot/zImage FORCE
/linux-master/arch/alpha/boot/
H A DMakefile12 targets := vmlinux.gz vmlinux \
13 vmlinux.nh tools/lxboot tools/bootlx tools/bootph \
21 $(obj)/bootimage: $(addprefix $(obj)/tools/,mkbb lxboot bootlx) $(obj)/vmlinux.nh
22 ( cat $(obj)/tools/lxboot $(obj)/tools/bootlx $(obj)/vmlinux.nh ) > $@
27 $(obj)/bootpfile: $(obj)/tools/bootph $(obj)/vmlinux.nh
28 cat $(obj)/tools/bootph $(obj)/vmlinux.nh > $@
35 $(obj)/bootpzfile: $(obj)/tools/bootpzh $(obj)/vmlinux.nh.gz
36 cat $(obj)/tools/bootpzh $(obj)/vmlinux.nh.gz > $@
42 $(obj)/vmlinux
[all...]
/linux-master/arch/powerpc/boot/
H A DzImage.ps3.lds.S8 .kernel:vmlinux.bin : { *(.kernel:vmlinux.bin) }
/linux-master/arch/csky/boot/
H A DMakefile4 $(obj)/Image: vmlinux FORCE
20 UIMAGE_LOADADDR = $(shell $(NM) vmlinux | awk '$$NF == "_start" {print $$1}')
/linux-master/arch/parisc/
H A Dinstall.sh26 base=vmlinux
/linux-master/arch/riscv/boot/
H A Dinstall.sh27 base=vmlinux
H A DMakefile31 $(obj)/xipImage: vmlinux FORCE
38 vmlinux.relocs: vmlinux
39 @ (! [ -f vmlinux.relocs ] && echo "vmlinux.relocs can't be found, please remove vmlinux and try again") || true
41 $(obj)/Image: vmlinux.relocs FORCE
43 $(obj)/Image: vmlinux FORCE
/linux-master/arch/arm64/boot/
H A Dinstall.sh28 base=vmlinux
/linux-master/arch/powerpc/tools/
H A Dhead_check.sh8 # This script checks the head of a vmlinux for linker stubs that
20 # vmlinux and look for branch stubs (long_branch, plt_branch, etc.) in the
40 echo "$0 [path to nm] [path to vmlinux]" 1>&2
46 vmlinux="$2"
49 $nm "$vmlinux" | grep -e " [TA] _stext$" -e " t start_first_256B$" -e " a text_start$" -e " t start_text$" > .tmp_symbols.txt
/linux-master/arch/microblaze/boot/
H A DMakefile10 $(obj)/linux.bin: vmlinux FORCE
25 $(obj)/simpleImage.$(DTB): vmlinux FORCE
31 $(obj)/simpleImage.$(DTB).unstrip: vmlinux FORCE
34 $(obj)/simpleImage.$(DTB).strip: vmlinux FORCE
/linux-master/arch/alpha/
H A DMakefile48 all boot: $(boot)/vmlinux.gz
50 $(boot)/vmlinux.gz: vmlinux
53 bootimage bootpfile bootpzfile: vmlinux
60 echo '* boot - Compressed kernel image (arch/alpha/boot/vmlinux.gz)'
/linux-master/arch/openrisc/
H A DMakefile26 all: vmlinux.bin
60 PHONY += vmlinux.bin
62 vmlinux.bin: vmlinux
/linux-master/tools/testing/selftests/bpf/progs/
H A Dtest_tracepoint.c4 #include <vmlinux.h>
H A Dtest_global_func17.c2 #include <vmlinux.h>
H A Dstruct_ops_maybe_null.c3 #include <vmlinux.h>
H A Dstruct_ops_maybe_null_fail.c3 #include <vmlinux.h>
H A Dbad_struct_ops.c3 #include <vmlinux.h>
/linux-master/arch/riscv/kernel/
H A Dimage-vars.h12 #error This file should only be included in vmlinux.lds.S
/linux-master/tools/testing/selftests/rcutorture/bin/
H A Dkvm-find-errors.sh39 elif ! test -f ${scenariobasedir}/vmlinux && ! test -f ${scenariobasedir}/vmlinux.xz && ! test -f "${rundir}/re-run"
41 echo No ${scenariobasedir}/vmlinux file > $i.diags

Completed in 182 milliseconds

12345678910