<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>7f7f6f7a - Makefile: remove redundant tool coverage variables</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#7f7f6f7a</link>
        <description>Makefile: remove redundant tool coverage variablesNow Kbuild provides reasonable defaults for objtool, sanitizers, andprofilers.Remove redundant variables.Note:This commit changes the coverage for some objects:  - include arch/mips/vdso/vdso-image.o into UBSAN, GCOV, KCOV  - include arch/sparc/vdso/vdso-image-*.o into UBSAN  - include arch/sparc/vdso/vma.o into UBSAN  - include arch/x86/entry/vdso/extable.o into KASAN, KCSAN, UBSAN, GCOV, KCOV  - include arch/x86/entry/vdso/vdso-image-*.o into KASAN, KCSAN, UBSAN, GCOV, KCOV  - include arch/x86/entry/vdso/vdso32-setup.o into KASAN, KCSAN, UBSAN, GCOV, KCOV  - include arch/x86/entry/vdso/vma.o into GCOV, KCOV  - include arch/x86/um/vdso/vma.o into KASAN, GCOV, KCOVI believe these are positive effects because all of them are kernelspace objects.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Reviewed-by: Kees Cook &lt;keescook@chromium.org&gt;Tested-by: Roberto Sassu &lt;roberto.sassu@huawei.com&gt;

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Mon, 06 May 2024 13:35:43 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>40745327 - modpost: Optimize symbol search from linear to binary search</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#40745327</link>
        <description>modpost: Optimize symbol search from linear to binary searchModify modpost to use binary search for converting addresses backinto symbol references.  Previously it used linear search.This change saves a few seconds of wall time for defconfig builds,but can save several minutes on allyesconfigs.Before:$ make LLVM=1 -j128 allyesconfig vmlinux -s KCFLAGS=&quot;-Wno-error&quot;$ time scripts/mod/modpost -M -m -a -N -o vmlinux.symvers vmlinux.o198.38user 1.27system 3:19.71elapsedAfter:$ make LLVM=1 -j128 allyesconfig vmlinux -s KCFLAGS=&quot;-Wno-error&quot;$ time scripts/mod/modpost -M -m -a -N -o vmlinux.symvers vmlinux.o11.91user 0.85system 0:12.78elapsedSigned-off-by: Jack Brennen &lt;jbrennen@google.com&gt;Tested-by: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Tue, 26 Sep 2023 12:40:44 +0000</pubDate>
        <dc:creator>Jack Brennen &lt;jbrennen@google.com&gt;</dc:creator>
    </item>
<item>
        <title>d23dddf8 - scripts/mod: disable LTO for empty.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#d23dddf8</link>
        <description>scripts/mod: disable LTO for empty.cWith CONFIG_LTO_CLANG, clang generates LLVM IR instead of ELF objectfiles. As empty.o is used for probing target properties, disable LTOfor it to produce an object file instead.Signed-off-by: Sami Tolvanen &lt;samitolvanen@google.com&gt;Reviewed-by: Kees Cook &lt;keescook@chromium.org&gt;Signed-off-by: Kees Cook &lt;keescook@chromium.org&gt;Link: https://lore.kernel.org/r/20201211184633.3213045-12-samitolvanen@google.com

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Fri, 11 Dec 2020 18:46:28 +0000</pubDate>
        <dc:creator>Sami Tolvanen &lt;samitolvanen@google.com&gt;</dc:creator>
    </item>
<item>
        <title>faabed29 - kbuild: introduce hostprogs-always-y and userprogs-always-y</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#faabed29</link>
        <description>kbuild: introduce hostprogs-always-y and userprogs-always-yTo build host programs, you need to add the program names to &apos;hostprogs&apos;to use the necessary build rule, but it is not enough to build thembecause there is no dependency.There are two types of host programs: built as the prerequisite ofanother (e.g. gen_crc32table in lib/Makefile), or always built whenKbuild visits the Makefile (e.g. genksyms in scripts/genksyms/Makefile).The latter is typical in Makefiles under scripts/, which contains hostprograms globally used during the kernel build. To build them, you needto add them to both &apos;hostprogs&apos; and &apos;always-y&apos;.This commit adds hostprogs-always-y as a shorthand.The same applies to user programs. net/bpfilter/Makefile buildsbpfilter_umh on demand, hence always-y is unneeded. In contrast,programs under samples/ are added to both &apos;userprogs&apos; and &apos;always-y&apos;so they are always built when Kbuild visits the Makefiles.userprogs-always-y works as a shorthand.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Acked-by: Miguel Ojeda &lt;miguel.ojeda.sandonis@gmail.com&gt;

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Sat, 01 Aug 2020 12:27:18 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>5f2fb52f - kbuild: rename hostprogs-y/always to hostprogs/always-y</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#5f2fb52f</link>
        <description>kbuild: rename hostprogs-y/always to hostprogs/always-yIn old days, the &quot;host-progs&quot; syntax was used for specifying hostprograms. It was renamed to the current &quot;hostprogs-y&quot; in 2004.It is typically useful in scripts/Makefile because it allows Kbuild toselectively compile host programs based on the kernel configuration.This commit renames like follows:  always       -&gt;  always-y  hostprogs-y  -&gt;  hostprogsSo, scripts/Makefile will look like this:  always-$(CONFIG_BUILD_BIN2C) += ...  always-$(CONFIG_KALLSYMS)    += ...      ...  hostprogs := $(always-y) $(always-m)I think this makes more sense because a host program is always a hostprogram, irrespective of the kernel configuration. We want to specifywhich ones to compile by CONFIG options, so always-y will be handier.The &quot;always&quot;, &quot;hostprogs-y&quot;, &quot;hostprogs-m&quot; will be kept for backwardcompatibility for a while.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Sat, 01 Feb 2020 16:49:24 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>6ac38934 - Revert &quot;kbuild/Makefile: Prepare for using macros in inline assembly code to work around asm() related GCC inlining bugs&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#6ac38934</link>
        <description>Revert &quot;kbuild/Makefile: Prepare for using macros in inline assembly code to work around asm() related GCC inlining bugs&quot;This reverts commit 77b0bf55bc675233d22cd5df97605d516d64525e.See this commit for details about the revert:  e769742d3584 (&quot;Revert &quot;x86/jump-labels: Macrofy inline assembly code to work around GCC inlining bugs&quot;&quot;) Conflicts:	arch/x86/MakefileReported-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Reviewed-by: Borislav Petkov &lt;bp@alien8.de&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Cc: Juergen Gross &lt;jgross@suse.com&gt;Cc: Richard Biener &lt;rguenther@suse.de&gt;Cc: Kees Cook &lt;keescook@chromium.org&gt;Cc: Segher Boessenkool &lt;segher@kernel.crashing.org&gt;Cc: Ard Biesheuvel &lt;ard.biesheuvel@linaro.org&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Josh Poimboeuf &lt;jpoimboe@redhat.com&gt;Cc: Nadav Amit &lt;namit@vmware.com&gt;Cc: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;Cc: linux-kernel@vger.kernel.orgSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Wed, 19 Dec 2018 10:27:05 +0000</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>60df1aee - kbuild: move modpost out of &apos;scripts&apos; target</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#60df1aee</link>
        <description>kbuild: move modpost out of &apos;scripts&apos; targetI am eagar to build under the scripts/ directory only with $(HOSTCC),but scripts/mod/ highly depends on the $(CC) and target arch headers.That it why the &apos;scripts&apos; target must depend on &apos;asm-generic&apos;,&apos;gcc-plugins&apos;, and $(autoksyms_h).Move it to the &apos;prepare0&apos; stage. I know this is a cheesy workaround,but better than the current situation.Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Thu, 29 Nov 2018 03:13:24 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>77b0bf55 - kbuild/Makefile: Prepare for using macros in inline assembly code to work around asm() related GCC inlining bugs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#77b0bf55</link>
        <description>kbuild/Makefile: Prepare for using macros in inline assembly code to work around asm() related GCC inlining bugsUsing macros in inline assembly allows us to work around bugsin GCC&apos;s inlining decisions.Compile macros.S and use it to assemble all C files.Currently only x86 will use it.Background:The inlining pass of GCC doesn&apos;t include an assembler, so it&apos;s not awareof basic properties of the generated code, such as its size in bytes,or that there are such things as discontiuous blocks of code and datadue to the newfangled linker feature called &apos;sections&apos; ...Instead GCC uses a lazy and fragile heuristic: it does a linear count ofcertain syntactic and whitespace elements in inlined assembly block sourcecode, such as a count of new-lines and semicolons (!), as a poor substitutefor &quot;code size and complexity&quot;.Unsurprisingly this heuristic falls over and breaks its neck whith certaincommon types of kernel code that use inline assembly, such as the frequentpractice of putting useful information into alternative sections.As a result of this fresh, 20+ years old GCC bug, GCC&apos;s inlining decisionsare effectively disabled for inlined functions that make use of such asm()blocks, because GCC thinks those sections of code are &quot;large&quot; - when inreality they are often result in just a very low number of machineinstructions.This absolute lack of inlining provess when GCC comes across such asm()blocks both increases generated kernel code size and causes performanceoverhead, which is particularly noticeable on paravirt kernels, which makefrequent use of these inlining facilities in attempt to stay out of theway when running on baremetal hardware.Instead of fixing the compiler we use a workaround: we set an assembly macroand call it from the inlined assembly block. As a result GCC considers theinline assembly block as a single instruction. (Which it often isn&apos;t but I digress.)This uglifies and bloats the source code - for example just the refcountrelated changes have this impact: Makefile                 |    9 +++++++-- arch/x86/Makefile        |    7 +++++++ arch/x86/kernel/macros.S |    7 +++++++ scripts/Kbuild.include   |    4 +++- scripts/mod/Makefile     |    2 ++ 5 files changed, 26 insertions(+), 3 deletions(-)Yay readability and maintainability, it&apos;s not like assembly code is hard to readand maintain ...We also hope that GCC will eventually get fixed, but we are not holdingour breath for that. Yet we are optimistic, it might still happen, any decade now.[ mingo: Wrote new changelog describing the background. ]Tested-by: Kees Cook &lt;keescook@chromium.org&gt;Signed-off-by: Nadav Amit &lt;namit@vmware.com&gt;Acked-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Acked-by: Peter Zijlstra (Intel) &lt;peterz@infradead.org&gt;Cc: Andy Lutomirski &lt;luto@amacapital.net&gt;Cc: Borislav Petkov &lt;bp@alien8.de&gt;Cc: Brian Gerst &lt;brgerst@gmail.com&gt;Cc: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;Cc: H. Peter Anvin &lt;hpa@zytor.com&gt;Cc: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;Cc: Michal Marek &lt;michal.lkml@markovi.net&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Sam Ravnborg &lt;sam@ravnborg.org&gt;Cc: Thomas Gleixner &lt;tglx@linutronix.de&gt;Cc: linux-kbuild@vger.kernel.orgLink: http://lkml.kernel.org/r/20181003213100.189959-3-namit@vmware.comSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Wed, 03 Oct 2018 21:30:52 +0000</pubDate>
        <dc:creator>Nadav Amit &lt;namit@vmware.com&gt;</dc:creator>
    </item>
<item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>ebf003f0 - kbuild: Consolidate header generation from ASM offset information</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#ebf003f0</link>
        <description>kbuild: Consolidate header generation from ASM offset informationLargely redundant code is used in different places to generate C headersfrom offset information extracted from assembly language output.Consolidate the code in Makefile.lib and use this instead.Signed-off-by: Matthias Kaehlcke &lt;mka@chromium.org&gt;Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Wed, 12 Apr 2017 19:43:52 +0000</pubDate>
        <dc:creator>Matthias Kaehlcke &lt;mka@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>c0dd6716 - objtool: Mark non-standard object files and directories</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#c0dd6716</link>
        <description>objtool: Mark non-standard object files and directoriesCode which runs outside the kernel&apos;s normal mode of operation often doesunusual things which can cause a static analysis tool like objtool toemit false positive warnings: - boot image - vdso image - relocation - realmode - efi - head - purgatory - modpostSet OBJECT_FILES_NON_STANDARD for their related files and directories,which will tell objtool to skip checking them.  It&apos;s ok to skip thembecause they don&apos;t affect runtime stack traces.Also skip the following code which does the right thing with respect toframe pointers, but is too &quot;special&quot; to be validated by a tool: - entry - mcountAlso skip the test_nx module because it modifies its exception handlingtable at runtime, which objtool can&apos;t understand.  Fortunately it&apos;sjust a test module so it doesn&apos;t matter much.Currently objtool is the only user of OBJECT_FILES_NON_STANDARD, but itmight eventually be useful for other tools.Signed-off-by: Josh Poimboeuf &lt;jpoimboe@redhat.com&gt;Cc: Andrew Morton &lt;akpm@linux-foundation.org&gt;Cc: Andy Lutomirski &lt;luto@kernel.org&gt;Cc: Arnaldo Carvalho de Melo &lt;acme@kernel.org&gt;Cc: Bernd Petrovitsch &lt;bernd@petrovitsch.priv.at&gt;Cc: Borislav Petkov &lt;bp@alien8.de&gt;Cc: Chris J Arges &lt;chris.j.arges@canonical.com&gt;Cc: Jiri Slaby &lt;jslaby@suse.cz&gt;Cc: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;Cc: Michal Marek &lt;mmarek@suse.cz&gt;Cc: Namhyung Kim &lt;namhyung@gmail.com&gt;Cc: Pedro Alves &lt;palves@redhat.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Thomas Gleixner &lt;tglx@linutronix.de&gt;Cc: live-patching@vger.kernel.orgLink: http://lkml.kernel.org/r/366c080e3844e8a5b6a0327dc7e8c2b90ca3baeb.1456719558.git.jpoimboe@redhat.comSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Mon, 29 Feb 2016 04:22:34 +0000</pubDate>
        <dc:creator>Josh Poimboeuf &lt;jpoimboe@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>bd701343 - improve modalias building</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#bd701343</link>
        <description>improve modalias buildingFor one, there&apos;s no point in the respective pieces to be rebuiltunconditionally on each and every rebuild.Second there&apos;s no need to invent a custom rule for generating the .sfile from the .c source - we can simply use the generic rule here.And finally, $(obj) should be used to refer to files in the build tree(rather than spelling out the subdirectory).Signed-off-by: Jan Beulich &lt;jbeulich@suse.com&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Wed, 29 May 2013 12:18:56 +0000</pubDate>
        <dc:creator>Jan Beulich &lt;JBeulich@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>f82935eb - scripts/mod: Spelling s/DEVICEVTABLE/DEVICETABLE/</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#f82935eb</link>
        <description>scripts/mod: Spelling s/DEVICEVTABLE/DEVICETABLE/Signed-off-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Fri, 17 May 2013 12:18:35 +0000</pubDate>
        <dc:creator>Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;</dc:creator>
    </item>
<item>
        <title>22fc4273 - Fix cleaning in scripts/mod</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#22fc4273</link>
        <description>Fix cleaning in scripts/modMake sure devicetable-offsets.h is cleaned in the scripts/mod directorySigned-off-by: Andreas Schwab &lt;schwab@linux-m68k.org&gt;Tested-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Sat, 04 May 2013 14:32:53 +0000</pubDate>
        <dc:creator>Andreas Schwab &lt;schwab@linux-m68k.org&gt;</dc:creator>
    </item>
<item>
        <title>6543becf - mod/file2alias: make modalias generation safe for cross compiling</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#6543becf</link>
        <description>mod/file2alias: make modalias generation safe for cross compilingUse the target compiler to compute the offsets for the fields of thedevice_id structures, so that it won&apos;t be broken by different alignmentsbetween the host and target ABIs.This also fixes missing endian corrections for some modaliases.Signed-off-by: Andreas Schwab &lt;schwab@linux-m68k.org&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Sun, 20 Jan 2013 16:58:47 +0000</pubDate>
        <dc:creator>Andreas Schwab &lt;schwab@linux-m68k.org&gt;</dc:creator>
    </item>
<item>
        <title>9e1b9b80 - module: make MODULE_SYMBOL_PREFIX into a CONFIG option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#9e1b9b80</link>
        <description>module: make MODULE_SYMBOL_PREFIX into a CONFIG optionThe next commit will require the use of MODULE_SYMBOL_PREFIX in.tmp_exports-asm.S.  Currently it is mixed in with C structuredefinitions in &quot;asm/module.h&quot;.  Move the definition of this arch optioninto Kconfig, so it can be easily accessed by any code.This also lets modpost.c use the same definition.  Previously modpostrelied on a hardcoded list of architectures in mk_elfconfig.c.A build test for blackfin, one of the two MODULE_SYMBOL_PREFIX archs,showed the generated code was unchanged.  vmlinux was identical savefor build ids, and an apparently randomized suffix on a single &quot;__key&quot;symbol in the kallsyms data).Signed-off-by: Alan Jenkins &lt;alan-jenkins@tuffmail.co.uk&gt;Acked-by: Mike Frysinger &lt;vapier@gentoo.org&gt; (blackfin)CC: Sam Ravnborg &lt;sam@ravnborg.org&gt;Signed-off-by: Rusty Russell &lt;rusty@rustcorp.com.au&gt;

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Sat, 07 Nov 2009 21:03:54 +0000</pubDate>
        <dc:creator>Alan Jenkins &lt;alan-jenkins@tuffmail.co.uk&gt;</dc:creator>
    </item>
<item>
        <title>1da177e4 - Linux-2.6.12-rc2</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/mod/Makefile#1da177e4</link>
        <description>Linux-2.6.12-rc2Initial git repository build. I&apos;m not bothering with the full history,even though we have it. We can create a separate &quot;historical&quot; gitarchive of that later if we want to, and in the meantime it&apos;s about3.2GB when imported into git - space that would just make the earlygit days unnecessarily complicated, when we don&apos;t have a lot of goodinfrastructure for it.Let it rip!

            List of files:
            /linux-6.15/scripts/mod/Makefile</description>
        <pubDate>Sat, 16 Apr 2005 22:20:36 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@ppc970.osdl.org&gt;</dc:creator>
    </item>
</channel>
</rss>
