aboutsummaryrefslogtreecommitdiff
path: root/scripts
AgeCommit message (Expand)AuthorFilesLines
2022-10-10Merge tag 'kbuild-v6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/masa...Gravatar Linus Torvalds 22-421/+359
2022-10-04Merge tag 'net-next-6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/net...Gravatar Linus Torvalds 1-7/+71
2022-10-03Merge tag 'selinux-pr-20221003' of git://git.kernel.org/pub/scm/linux/kernel/...Gravatar Linus Torvalds 1-3/+2
2022-10-03Merge tag 'hardening-v6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/g...Gravatar Linus Torvalds 1-0/+1
2022-10-03Merge tag 'kcfi-v6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/ke...Gravatar Linus Torvalds 2-19/+5
2022-10-03Merge tag 'rust-v6.1-rc1' of https://github.com/Rust-for-Linux/linuxGravatar Linus Torvalds 19-26/+773
2022-10-03Merge tag 'docs-6.1' of git://git.lwn.net/linuxGravatar Linus Torvalds 1-4/+4
2022-10-03kbuild: rebuild .vmlinux.export.o when its prerequisite is updatedGravatar Masahiro Yamada 2-6/+20
2022-10-03kbuild: move modules.builtin(.modinfo) rules to Makefile.vmlinux_oGravatar Masahiro Yamada 2-8/+25
2022-10-03kallsyms: ignore __kstrtab_* and __kstrtabns_* symbolsGravatar Masahiro Yamada 1-0/+4
2022-10-02kallsyms: take the input file instead of reading stdinGravatar Masahiro Yamada 2-19/+34
2022-10-02kallsyms: drop duplicated ignore patterns from kallsyms.cGravatar Masahiro Yamada 2-4/+13
2022-10-02kbuild: reuse mksysmap output for kallsymsGravatar Masahiro Yamada 1-6/+5
2022-10-02mksysmap: update comment about __crc_*Gravatar Masahiro Yamada 1-4/+4
2022-10-02kbuild: remove head-y syntaxGravatar Masahiro Yamada 1-0/+53
2022-10-02kbuild: use obj-y instead extra-y for objects placed at the headGravatar Masahiro Yamada 4-30/+10
2022-10-01Makefile.extrawarn: Move -Wcast-function-type-strict to W=1Gravatar Sami Tolvanen 1-0/+1
2022-09-29Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netGravatar Jakub Kicinski 4-18/+10
2022-09-29checkpatch: warn on usage of VM_BUG_ON() and other BUG variantsGravatar David Hildenbrand 1-3/+3
2022-09-29docs: move asm-annotations.rst into core-apiGravatar Jonathan Corbet 1-1/+1
2022-09-29kbuild: re-run modpost when it is updatedGravatar Masahiro Yamada 1-6/+8
2022-09-29kbuild: unify two modpost invocationsGravatar Masahiro Yamada 3-69/+29
2022-09-29kbuild: move vmlinux.o rule to the top MakefileGravatar Masahiro Yamada 1-3/+0
2022-09-29kbuild: move .vmlinux.objs rule to Makefile.modpostGravatar Masahiro Yamada 2-20/+28
2022-09-29kbuild: list sub-directories in ./KbuildGravatar Masahiro Yamada 1-0/+2
2022-09-29Makefile.compiler: replace cc-ifversion with compiler-specific macrosGravatar Nick Desaulniers 2-5/+9
2022-09-29kbuild: rpm-pkg: fix breakage when V=1 is usedGravatar Janis Schoetterl-Glausch 1-2/+2
2022-09-29scripts: remove unused argument 'type'Gravatar Zeng Heng 1-3/+3
2022-09-29Kconfig: remove sym_set_choice_valueGravatar Zeng Heng 2-6/+1
2022-09-29kbuild: use objtool-args-y to clean up objtool argumentsGravatar Masahiro Yamada 2-26/+20
2022-09-29kbuild: fix and refactor single target buildGravatar Masahiro Yamada 1-38/+16
2022-09-29kbuild: rewrite check-local-export in sh/awkGravatar Owen Rafferty 1-49/+48
2022-09-29Revert "kbuild: Make scripts/compile.h when sh != bash"Gravatar Masahiro Yamada 1-3/+0
2022-09-29scripts/mkcompile_h: move LC_ALL=C to '$LD -v'Gravatar Masahiro Yamada 1-6/+2
2022-09-29kbuild: build init/built-in.a just onceGravatar Masahiro Yamada 2-91/+15
2022-09-29kbuild: do not deduplicate modules.orderGravatar Masahiro Yamada 1-1/+1
2022-09-29kbuild: check sha1sum just once for each atomic headerGravatar Masahiro Yamada 1-33/+0
2022-09-29kbuild: hard-code KBUILD_ALLDIRS in scripts/Makefile.packageGravatar Masahiro Yamada 1-1/+4
2022-09-29kbuild: remove the target in signal traps when interruptedGravatar Masahiro Yamada 1-1/+22
2022-09-28x86: enable initial Rust supportGravatar Miguel Ojeda 1-2/+13
2022-09-28Kbuild: add Rust supportGravatar Miguel Ojeda 9-15/+203
2022-09-28scripts: add `is_rust_module.sh`Gravatar Daniel Xu 1-0/+16
2022-09-28scripts: add `rust_is_available.sh`Gravatar Miguel Ojeda 3-0/+168
2022-09-28scripts: add `generate_rust_target.rs`Gravatar Miguel Ojeda 2-0/+172
2022-09-28scripts: add `generate_rust_analyzer.py`Gravatar Miguel Ojeda 1-0/+135
2022-09-28scripts: decode_stacktrace: demangle Rust symbolsGravatar Miguel Ojeda 1-0/+14
2022-09-28scripts: checkpatch: enable language-independent checks for RustGravatar Miguel Ojeda 1-2/+2
2022-09-28scripts: checkpatch: diagnose uses of `%pA` in the C side as errorsGravatar Miguel Ojeda 1-2/+6
2022-09-28kallsyms: increase maximum kernel symbol length to 512Gravatar Miguel Ojeda 1-2/+2
2022-09-28kallsyms: support "big" kernel symbolsGravatar Miguel Ojeda 1-3/+26