<?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 .gitignore</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>be2b34fa - randstruct: Move seed generation into scripts/basic/</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/basic/.gitignore#be2b34fa</link>
        <description>randstruct: Move seed generation into scripts/basic/To enable Clang randstruct support, move the structure layoutrandomization seed generation out of scripts/gcc-plugins/ intoscripts/basic/ so it happens early enough that it can be used by eithercompiler implementation. The gcc-plugin still builds its own header file,but now does so from the common &quot;randstruct.seed&quot; file.Cc: linux-hardening@vger.kernel.orgSigned-off-by: Kees Cook &lt;keescook@chromium.org&gt;Link: https://lore.kernel.org/r/20220503205503.3054173-6-keescook@chromium.org

            List of files:
            /linux-6.15/scripts/basic/.gitignore</description>
        <pubDate>Tue, 03 May 2022 20:55:02 +0000</pubDate>
        <dc:creator>Kees Cook &lt;keescook@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>9009b455 - .gitignore: prefix local generated files with a slash</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/basic/.gitignore#9009b455</link>
        <description>.gitignore: prefix local generated files with a slashThe pattern prefixed with &apos;/&apos; matches files in the same directory,but not ones in sub-directories.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Acked-by: Miguel Ojeda &lt;ojeda@kernel.org&gt;Acked-by: Rob Herring &lt;robh@kernel.org&gt;Acked-by: Andra Paraschiv &lt;andraprs@amazon.com&gt;Acked-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Acked-by: Gabriel Krisman Bertazi &lt;krisman@collabora.com&gt;

            List of files:
            /linux-6.15/scripts/basic/.gitignore</description>
        <pubDate>Fri, 30 Apr 2021 02:03:08 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>d198b34f - .gitignore: add SPDX License Identifier</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/basic/.gitignore#d198b34f</link>
        <description>.gitignore: add SPDX License IdentifierAdd SPDX License Identifier to all .gitignore files.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/scripts/basic/.gitignore</description>
        <pubDate>Tue, 03 Mar 2020 13:35:59 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c417fbce - kbuild: move bin2c back to scripts/ from scripts/basic/</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/basic/.gitignore#c417fbce</link>
        <description>kbuild: move bin2c back to scripts/ from scripts/basic/Commit 8370edea81e3 (&quot;bin2c: move bin2c in scripts/basic&quot;) moved bin2cto the scripts/basic/ directory, incorrectly stating &quot;Kexec wants touse bin2c and it wants to use it really early in the build process.See arch/x86/purgatory/ code in later patches.&quot;Commit bdab125c9301 (&quot;Revert &quot;kexec/purgatory: Add clean-up forpurgatory directory&quot;&quot;) and commit d6605b6bbee8 (&quot;x86/build: Removeunnecessary preparation for purgatory&quot;) removed the redundantpurgatory build magic entirely.That means that the move of bin2c was unnecessary in the first place.fixdep is the only host program that deserves to sit in thescripts/basic/ directory.Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;

            List of files:
            /linux-6.15/scripts/basic/.gitignore</description>
        <pubDate>Mon, 25 Jun 2018 16:40:23 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>8370edea - bin2c: move bin2c in scripts/basic</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/basic/.gitignore#8370edea</link>
        <description>bin2c: move bin2c in scripts/basicThis patch series does not do kernel signature verification yet.  I planto post another patch series for that.  Now distributions are alreadysigning PE/COFF bzImage with PKCS7 signature I plan to parse and verifythose signatures.Primary goal of this patchset is to prepare groundwork so that kernelimage can be signed and signatures be verified during kexec load.  Thisshould help with two things.- It should allow kexec/kdump on secureboot enabled machines.- In general it can help even without secureboot. By being able to verify  kernel image signature in kexec, it should help with avoiding module  signing restrictions. Matthew Garret showed how to boot into a custom  kernel, modify first kernel&apos;s memory and then jump back to old kernel and  bypass any policy one wants to.This patch (of 15):Kexec wants to use bin2c and it wants to use it really early in the buildprocess. See arch/x86/purgatory/ code in later patches.So move bin2c in scripts/basic so that it can be built very early andbe usable by arch/x86/purgatory/Signed-off-by: Vivek Goyal &lt;vgoyal@redhat.com&gt;Cc: Borislav Petkov &lt;bp@suse.de&gt;Cc: Michael Kerrisk &lt;mtk.manpages@gmail.com&gt;Cc: Yinghai Lu &lt;yinghai@kernel.org&gt;Cc: Eric Biederman &lt;ebiederm@xmission.com&gt;Cc: H. Peter Anvin &lt;hpa@zytor.com&gt;Cc: Matthew Garrett &lt;mjg59@srcf.ucam.org&gt;Cc: Greg Kroah-Hartman &lt;greg@kroah.com&gt;Cc: Dave Young &lt;dyoung@redhat.com&gt;Cc: WANG Chao &lt;chaowang@redhat.com&gt;Cc: Baoquan He &lt;bhe@redhat.com&gt;Cc: Andy Lutomirski &lt;luto@amacapital.net&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux-6.15/scripts/basic/.gitignore</description>
        <pubDate>Fri, 08 Aug 2014 21:25:38 +0000</pubDate>
        <dc:creator>Vivek Goyal &lt;vgoyal@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>bffd2020 - kbuild: move scripts/basic/docproc.c to scripts/docproc.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/basic/.gitignore#bffd2020</link>
        <description>kbuild: move scripts/basic/docproc.c to scripts/docproc.cMove docproc from scripts/basic to scripts so it is only built for *doctargets instead of every time the kernel is built.

            List of files:
            /linux-6.15/scripts/basic/.gitignore</description>
        <pubDate>Mon, 02 May 2011 20:48:03 +0000</pubDate>
        <dc:creator>Peter Foley &lt;pefoley2@verizon.net&gt;</dc:creator>
    </item>
<item>
        <title>db7a6d8d - Update .gitignore files for generated targets</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/basic/.gitignore#db7a6d8d</link>
        <description>Update .gitignore files for generated targetsThe generated &apos;capflags.c&apos; file wasn&apos;t properly ignored, and the list offiles in scripts/basic/ wasn&apos;t up-to-date.Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux-6.15/scripts/basic/.gitignore</description>
        <pubDate>Mon, 20 Oct 2008 18:24:31 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>1e65174a - Add some basic .gitignore files</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/basic/.gitignore#1e65174a</link>
        <description>Add some basic .gitignore filesThis still leaves driver and architecture-specific subdirectories alone,but gets rid of the bulk of the &quot;generic&quot; generated files that we shouldignore.Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;

            List of files:
            /linux-6.15/scripts/basic/.gitignore</description>
        <pubDate>Tue, 18 Oct 2005 15:26:15 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@g5.osdl.org&gt;</dc:creator>
    </item>
</channel>
</rss>
