<?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>e632bca0 - arm64: generate 64-bit syscall.tbl</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/arm64/tools/Makefile#e632bca0</link>
        <description>arm64: generate 64-bit syscall.tblChange the asm/unistd.h header for arm64 to no longer includeasm-generic/unistd.h itself, but instead generate both the asm/unistd.hcontents and the list of entry points using the syscall.tbl scripts thatwe use on most other architectures.Once his is done for the remaining architectures, the generic unistd.hheader can be removed and the generated tbl file put in its place.The Makefile changes are more complex than they should be, I needa little help to improve those. Ideally this should be done in anarchitecture-independent way as well.Acked-by: Catalin Marinas &lt;catalin.marinas@arm.com&gt;Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;

            List of files:
            /linux-6.15/arch/arm64/tools/Makefile</description>
        <pubDate>Thu, 04 Jul 2024 12:33:34 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>484de085 - arm64: Factor out cpucap definitions</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/arm64/tools/Makefile#484de085</link>
        <description>arm64: Factor out cpucap definitionsFor clarity it would be nice to factor cpucap manipulation out of&lt;asm/cpufeature.h&gt;, and the obvious place would be &lt;asm/cpucap.h&gt;, butthis will clash somewhat with &lt;generated/asm/cpucaps.h&gt;.Rename &lt;generated/asm/cpucaps.h&gt; to &lt;generated/asm/cpucap-defs.h&gt;,matching what we do for &lt;generated/asm/sysreg-defs.h&gt;, and introduce anew &lt;asm/cpucaps.h&gt; which includes the generated header.Subsequent patches will fill out &lt;asm/cpucaps.h&gt;.There should be no functional change as a result of this patch.Signed-off-by: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Marc Zyngier &lt;maz@kernel.org&gt;Cc: Mark Brown &lt;broonie@kernel.org&gt;Cc: Suzuki K Poulose &lt;suzuki.poulose@arm.com&gt;Cc: Will Deacon &lt;will@kernel.org&gt;Signed-off-by: Catalin Marinas &lt;catalin.marinas@arm.com&gt;

            List of files:
            /linux-6.15/arch/arm64/tools/Makefile</description>
        <pubDate>Mon, 16 Oct 2023 10:24:26 +0000</pubDate>
        <dc:creator>Mark Rutland &lt;mark.rutland@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>c07d8017 - arm64/sysreg: Enable automatic generation of system register definitions</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/arm64/tools/Makefile#c07d8017</link>
        <description>arm64/sysreg: Enable automatic generation of system register definitionsNow that we have a script for generating system registers hook it up to thebuild system similarly to cpucaps. Since we don&apos;t currently have any actualregister information in the input file this should produce no change in thebuilt kernel. For ease of review the register information will be convertedin separate patches.Signed-off-by: Mark Brown &lt;broonie@kernel.org&gt;Acked-by: Mark Rutland &lt;mark.rutland@arm.com&gt;Link: https://lore.kernel.org/r/20220503170233.507788-10-broonie@kernel.orgSigned-off-by: Catalin Marinas &lt;catalin.marinas@arm.com&gt;

            List of files:
            /linux-6.15/arch/arm64/tools/Makefile</description>
        <pubDate>Tue, 03 May 2022 17:02:30 +0000</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>819a47d2 - arm64: clean up tools Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/arm64/tools/Makefile#819a47d2</link>
        <description>arm64: clean up tools MakefileRemove unused gen-y.Remove redundant $(shell ...) because &apos;mkdir&apos; is done in cmd_gen_cpucaps.Replace $(filter-out $(PHONY), $^) with the $(real-prereqs) shorthand.The &apos;&amp;&amp;&apos; in cmd_gen_cpucaps should be replaced with &apos;;&apos; because it isrun under &apos;set -e&apos; environment.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Link: https://lore.kernel.org/r/20220227085232.206529-1-masahiroy@kernel.orgSigned-off-by: Will Deacon &lt;will@kernel.org&gt;

            List of files:
            /linux-6.15/arch/arm64/tools/Makefile</description>
        <pubDate>Sun, 27 Feb 2022 08:52:32 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>0c6c2d36 - arm64: Generate cpucaps.h</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/arm64/tools/Makefile#0c6c2d36</link>
        <description>arm64: Generate cpucaps.hThe arm64 code allocates an internal constant to every CPU feature it candetect, distinct from the public hwcap numbers we use to expose somefeatures to userspace. Currently this is maintained manually which is anirritating source of conflicts when working on new features, to avoid thisreplace the header with a simple text file listing the names we&apos;ve assignedand sort it to minimise conflicts.As part of doing this we also do the Kbuild hookup required to hook upan arch tools directory and to generate header files in there.This will result in a renumbering and reordering of the existing constants,since they are all internal only the values should not be important. Thereordering will impact the order in which some steps in enumeration handlefeatures but the algorithm is not intended to depend on this and I haven&apos;tseen any issues when testing. Due to the UAO cpucap having been removed inthe past we end up with ARM64_NCAPS being 1 smaller than it was before.Signed-off-by: Mark Brown &lt;broonie@kernel.org&gt;Reviewed-by: Mark Rutland &lt;mark.rutland@arm.com&gt;Tested-by: Mark Rutland &lt;mark.rutland@arm.com&gt;Link: https://lore.kernel.org/r/20210428121231.11219-1-broonie@kernel.orgSigned-off-by: Catalin Marinas &lt;catalin.marinas@arm.com&gt;

            List of files:
            /linux-6.15/arch/arm64/tools/Makefile</description>
        <pubDate>Wed, 28 Apr 2021 12:12:31 +0000</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
