<?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>bbc90bc1 - arch: syscalls: simplify uapi/kapi directory creation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/kernel/syscalls/Makefile#bbc90bc1</link>
        <description>arch: syscalls: simplify uapi/kapi directory creation$(shell ...) expands to empty. There is no need to assign it to _dummy.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;

            List of files:
            /linux-6.15/arch/powerpc/kernel/syscalls/Makefile</description>
        <pubDate>Sun, 27 Feb 2022 09:10:24 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>672bff58 - powerpc/syscalls: switch to generic syscallhdr.sh</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/kernel/syscalls/Makefile#672bff58</link>
        <description>powerpc/syscalls: switch to generic syscallhdr.shMany architectures duplicate similar shell scripts.This commit converts powerpc to use scripts/syscallhdr.sh.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://lore.kernel.org/r/20210301153019.362742-2-masahiroy@kernel.org

            List of files:
            /linux-6.15/arch/powerpc/kernel/syscalls/Makefile</description>
        <pubDate>Mon, 01 Mar 2021 15:30:19 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>14b3c9d2 - powerpc/syscalls: switch to generic syscalltbl.sh</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/kernel/syscalls/Makefile#14b3c9d2</link>
        <description>powerpc/syscalls: switch to generic syscalltbl.shMany architectures duplicate similar shell scripts.This commit converts powerpc to use scripts/syscalltbl.sh. This alsounifies syscall_table_32.h and syscall_table_c32.h.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://lore.kernel.org/r/20210301153019.362742-1-masahiroy@kernel.org

            List of files:
            /linux-6.15/arch/powerpc/kernel/syscalls/Makefile</description>
        <pubDate>Mon, 01 Mar 2021 15:30:18 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>29c5c3ac - arch: syscalls: remove $(srctree)/ prefix from syscall tables</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/kernel/syscalls/Makefile#29c5c3ac</link>
        <description>arch: syscalls: remove $(srctree)/ prefix from syscall tablesThe &apos;syscall&apos; variables are not directly used in the commands.Remove the $(srctree)/ prefix because we can rely on VPATH.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/arch/powerpc/kernel/syscalls/Makefile</description>
        <pubDate>Mon, 15 Feb 2021 00:48:23 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>865fa29f - arch: syscalls: add missing FORCE and fix &apos;targets&apos; to make if_changed work</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/kernel/syscalls/Makefile#865fa29f</link>
        <description>arch: syscalls: add missing FORCE and fix &apos;targets&apos; to make if_changed workThe rules in these Makefiles cannot detect the command line changebecause the prerequisite &apos;FORCE&apos; is missing.Adding &apos;FORCE&apos; will result in the headers being rebuilt every timebecause the &apos;targets&apos; additions are also wrong; the file paths in&apos;targets&apos; must be relative to the current Makefile.Fix all of them so the if_changed rules work correctly.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;

            List of files:
            /linux-6.15/arch/powerpc/kernel/syscalls/Makefile</description>
        <pubDate>Mon, 15 Feb 2021 00:48:22 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>aff85039 - powerpc: add system call table generation support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/kernel/syscalls/Makefile#aff85039</link>
        <description>powerpc: add system call table generation supportThe system call tables are in different format in allarchitecture and it will be difficult to manually add ormodify the system calls in the respective files. To makeit easy by keeping a script and which will generate theuapi header and syscall table file. This change will alsohelp to unify the implementation across all architectures.The system call table generation script is added insyscalls directory which contain the script to generateboth uapi header file and system call table files.The syscall.tbl file will be the input for the scripts.syscall.tbl contains the list of available system callsalong with system call number and corresponding entry point.Add a new system call in this architecture will be possibleby adding new entry in the syscall.tbl file.Adding a new table entry consisting of:  	- System call number.	- ABI.	- System call name.	- Entry point name.	- Compat entry name, if required.syscallhdr.sh and syscalltbl.sh will generate uapi header-unistd_32/64.h and syscall_table_32/64/c32/spu.h filesrespectively. File syscall_table_32/64/c32/spu.h is incl-uded by syscall.S - the real system call table. Both *.shfiles will parse the content syscall.tbl to generate theheader and table files.ARM, s390 and x86 architecuture does have similar support.I leverage their implementation to come up with a genericsolution.Signed-off-by: Firoz Khan &lt;firoz.khan@linaro.org&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/kernel/syscalls/Makefile</description>
        <pubDate>Mon, 17 Dec 2018 10:40:34 +0000</pubDate>
        <dc:creator>Firoz Khan &lt;firoz.khan@linaro.org&gt;</dc:creator>
    </item>
</channel>
</rss>
