public inbox for linux-kbuild@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2022-04-13 13:07:24 to 2022-05-05 07:27:11 UTC [more...]

[PATCH v3 00/15] kbuild: yet another series of cleanups (modpost, LTO, MODULE_REL_CRCS)
 2022-05-05  7:22 UTC  (16+ messages)
` [PATCH v3 01/15] modpost: mitigate false-negatives for static EXPORT_SYMBOL checks
` [PATCH v3 02/15] modpost: change the license of EXPORT_SYMBOL to bool type
` [PATCH v3 03/15] modpost: merge add_{intree_flag,retpoline,staging_flag} to add_header
` [PATCH v3 04/15] modpost: move *.mod.c generation to write_mod_c_files()
` [PATCH v3 05/15] kbuild: generate a list of objects in vmlinux
` [PATCH v3 06/15] kbuild: record symbol versions in *.cmd files
` [PATCH v3 07/15] modpost: extract symbol versions from "
` [PATCH v3 08/15] kbuild: link symbol CRCs at final link, removing CONFIG_MODULE_REL_CRCS
` [PATCH v3 09/15] kbuild: stop merging *.symversions
` [PATCH v3 10/15] genksyms: adjust the output format to modpost
` [PATCH v3 11/15] kbuild: do not create *.prelink.o for Clang LTO or IBT
` [PATCH v3 12/15] modpost: simplify the ->is_static initialization
` [PATCH v3 13/15] modpost: use hlist for hash table implementation
` [PATCH v3 14/15] kbuild: make built-in.a rule robust against too long argument error
` [PATCH v3 15/15] kbuild: make *.mod "

[PATCH v2 00/26] kbuild: yet another series of cleanups (modpost and LTO)
 2022-05-05  6:55 UTC  (38+ messages)
` [PATCH v2 01/26] modpost: use bool type where appropriate
` [PATCH v2 02/26] modpost: change mod->gpl_compatible to bool type
` [PATCH v2 03/26] modpost: import include/linux/list.h
` [PATCH v2 04/26] modpost: traverse modules in order
` [PATCH v2 05/26] modpost: add sym_add_unresolved() helper
` [PATCH v2 06/26] modpost: traverse unresolved symbols in order
` [PATCH v2 07/26] modpost: use doubly linked list for dump_lists
` [PATCH v2 08/26] modpost: traverse the namespace_list in order
` [PATCH v2 09/26] modpost: dump Module.symvers in the same order of modules.order
` [PATCH v2 10/26] modpost: move static EXPORT_SYMBOL check to check_exports()
` [PATCH v2 11/26] modpost: make multiple export error
` [PATCH v2 12/26] modpost: make sym_add_exported() always allocate a new symbol
` [PATCH v2 13/26] modpost: split new_symbol() to symbol allocation and hash table addition
` [PATCH v2 14/26] modpost: mitigate false-negatives for static EXPORT_SYMBOL checks
` [PATCH v2 15/26] kbuild: record symbol versions in *.cmd files
` [PATCH v2 16/26] kbuild: generate a list of objects in vmlinux
` [PATCH v2 17/26] modpost: extract symbol versions from *.cmd files
` [PATCH v2 18/26] modpost: generate linker script to collect symbol versions
` [PATCH v2 19/26] kbuild: embed symbol versions at final link of vmlinux or modules
` [PATCH v2 20/26] kbuild: stop merging *.symversions
` [PATCH v2 21/26] genksyms: adjust the output format for .cmd files
` [PATCH v2 22/26] kbuild: do not create *.prelink.o for Clang LTO or IBT
` [PATCH v2 23/26] kbuild: make built-in.a rule robust against too long argument error
` [PATCH v2 24/26] kbuild: make *.mod "
` [PATCH v2 25/26] modpost: simplify the ->is_static initialization
` [PATCH v2 26/26] modpost: use hlist for hash table implementation

[PATCH] scripts/prune-kernel: Use kernel-install if available
 2022-05-04 21:27 UTC 

[PATCH 0/6] randstruct: Enable Clang support
 2022-05-03 21:31 UTC  (8+ messages)
` [PATCH 1/6] netfs: Eliminate Clang randstruct warning
` [PATCH 2/6] sancov: Split plugin build from plugin CFLAGS
` [PATCH 3/6] randstruct: Reorganize Kconfigs and attribute macros
` [PATCH 4/6] randstruct: Split randstruct Makefile and CFLAGS
` [PATCH 5/6] randstruct: Move seed generation into scripts/basic/
` [PATCH 6/6] randstruct: Enable Clang support

2nd Quater puchase request
 2022-05-03 14:49 UTC 

[PATCH v10 00/15] Function Granular KASLR
 2022-05-03  7:31 UTC  (4+ messages)
` [PATCH v10 01/15] modpost: fix removing numeric suffixes

[PATCH v2] kbuild: factor out the common installation code into scripts/install.sh
 2022-05-03  2:47 UTC 

[PATCH] kbuild: drop $(objtree)/ prefix support for clean-files
 2022-05-03  2:01 UTC  (3+ messages)

[PATCH 00/27] kbuild: yet another series of cleanups (modpost and LTO)
 2022-05-01 13:14 UTC  (70+ messages)
` [PATCH 01/27] modpost: use snprintf() instead of sprintf() for safety
` [PATCH 02/27] modpost: do not write out any file when error occurred
` [PATCH 03/27] modpost: remove stale comment about sym_add_exported()
` [PATCH 04/27] modpost: add a separate error for exported symbols without definition
` [PATCH 05/27] modpost: retrieve the module dependency and CRCs in check_exports()
` [PATCH 06/27] modpost: use bool type where appropriate
` [PATCH 07/27] modpost: import include/linux/list.h
` [PATCH 08/27] modpost: traverse modules in order
` [PATCH 09/27] modpost: add sym_add_unresolved() helper
` [PATCH 10/27] modpost: traverse unresolved symbols in order
` [PATCH 11/27] modpost: use doubly linked list for dump_lists
` [PATCH 12/27] modpost: move struct namespace_list to modpost.c
` [PATCH 13/27] modpost: traverse the namespace_list in order
` [PATCH 14/27] modpost: dump Module.symvers in the same order of modules.order
` [PATCH 15/27] modpost: move static EXPORT_SYMBOL check to check_exports()
` [PATCH 16/27] modpost: make multiple export error
` [PATCH 17/27] modpost: make sym_add_exported() always allocate a new symbol
` [PATCH 18/27] modpost: make sym_add_exported() a void function
` [PATCH 19/27] modpost: use hlist for hash table implementation
` [PATCH 20/27] modpost: mitigate false-negatives for static EXPORT_SYMBOL checks
` [PATCH 21/27] kbuild: record symbol versions in *.cmd files
` [PATCH 22/27] kbuild: generate a list of objects in vmlinux
` [PATCH 23/27] modpost: retrieve symbol versions by parsing *.cmd files
` [PATCH 24/27] modpost: generate linker script to collect symbol versions
` [PATCH 25/27] kbuild: embed symbol versions at final link of vmlinux or modules
` [PATCH 26/27] kbuild: stop generating *.symversions
` [PATCH 27/27] kbuild: do not create *.prelink.o for Clang LTO or IBT

[PATCH 1/2] ia64: make the install target not depend on any build artifact
 2022-04-30 12:16 UTC  (2+ messages)
` [PATCH 2/2] scripts: factor out the common installation code into scripts/install.sh

[PATCH v2] Makefile: fix 2 typos
 2022-04-30  3:32 UTC  (2+ messages)

[RFC PATCH] kbuild: call checksyscalls.sh and check-atomics.sh only if prerequisites change
 2022-04-29 17:11 UTC  (2+ messages)

[PATCH v3 -next] scripts: add compare-config utility
 2022-04-29 11:11 UTC  (3+ messages)

[PATCH 1/1] of: unittest: rename overlay source files from .dts to .dtso
 2022-04-28 18:16 UTC  (22+ messages)

[for-next][PATCH 10/21] bootconfig: Make the bootconfig.o as a normal object file
 2022-04-27 19:36 UTC  (4+ messages)
` [for-next][PATCH 11/21] bootconfig: Check the checksum before removing the bootconfig from initrd
` [for-next][PATCH 12/21] bootconfig: Support embedding a bootconfig file in kernel
` [for-next][PATCH 13/21] docs: bootconfig: Add how to embed the bootconfig into kernel

Wycena paneli fotowoltaicznych
 2022-04-27  7:28 UTC 

[PATCH] Makefile: fix a typo
 2022-04-26  3:38 UTC  (2+ messages)

[PATCH 0/7] kbuild: more misc cleanups
 2022-04-23  5:02 UTC  (4+ messages)

[PATCH V1 1/1] scripts/Kbuild: Add path of fixeddep script
 2022-04-22 17:55 UTC  (2+ messages)

[linux-next:master] BUILD REGRESSION f1244c81da13009dbf61cb807f45881501c44789
 2022-04-20 21:09 UTC 

[PATCH] kbuild: Remove CONFIG_DEBUG_SECTION_MISMATCH
 2022-04-20 17:30 UTC  (5+ messages)

[PATCH] kbuild: support W=e to make build abort in case of warning
 2022-04-20 16:21 UTC  (11+ messages)
` [PATCHv1] "

[PATCH v2] scripts: dummy-tools, add pahole
 2022-04-20 16:21 UTC  (2+ messages)

[PATCH] scripts: dummy-tools, add pahole
 2022-04-19  6:23 UTC  (6+ messages)

[RFC PATCH v6 00/12] livepatch: klp-convert tool
 2022-04-18 18:12 UTC  (10+ messages)
` [RFC PATCH v6 01/12] livepatch: Create and include UAPI headers
` [RFC PATCH v6 02/12] kbuild: Support for symbols.klp creation
` [RFC PATCH v6 03/12] livepatch: Add klp-convert tool
  ` elf API: was: "

escorts "[your-subject]"
 2022-04-15 13:31 UTC 

[PATCH RESEND 0/1] lib/Kconfig: remove DEBUG_PER_CPU_MAPS dependency for CPUMASK_OFFSTACK
 2022-04-14 18:01 UTC  (17+ messages)
` [PATCH RESEND 1/1] "

[PATCH] Makefile: Fix separate output directory build of kselftests
 2022-04-14 11:10 UTC  (5+ messages)

[PATCH v8 0/4] bootconfig: Support embedding a bootconfig in kernel for non initrd boot
 2022-04-13 13:34 UTC  (3+ messages)
` [PATCH v8 3/4] bootconfig: Support embedding a bootconfig file in kernel

[PATCH v4 0/3] bootconfig: Support embedding a bootconfig in kernel for non initrd boot
 2022-04-13 13:23 UTC  (3+ messages)

gcc inserts __builtin_popcount, causes 'modpost: "__popcountdi2" ... amdgpu.ko] undefined'
 2022-04-13 13:07 UTC  (2+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox