<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/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>c17ee635fd3a482b2ad2bf5e269755c2eae5f25e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#c17ee635fd3a482b2ad2bf5e269755c2eae5f25e</link>
        <description>Merge drm/drm-fixes into drm-misc-fixes7.0-rc1 was just released, let&apos;s merge it to kick the new release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Mon, 23 Feb 2026 10:09:45 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>df989b01b5f97dae8f9869cfacbda1308f2182c1 - Merge 7.0 Kbuild changes into kbuild-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#df989b01b5f97dae8f9869cfacbda1308f2182c1</link>
        <description>Merge 7.0 Kbuild changes into kbuild-fixeskbuild-fixes needs to be based on 6.19 to apply some fixes for  62089b804895 (&quot;kbuild: rpm-pkg: Generate debuginfo package manually&quot;)which landed in 6.19-rc1 but the new material of 7.0 needs fixes mergedas well.Signed-off-by: Nathan Chancellor &lt;nathan@kernel.org&gt;

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Thu, 12 Feb 2026 17:28:27 +0100</pubDate>
        <dc:creator>Nathan Chancellor &lt;nathan@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>41f1a08645abb5ef7d2a3ed8835c747334878774 - Merge tag &apos;kbuild-7.0-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#41f1a08645abb5ef7d2a3ed8835c747334878774</link>
        <description>Merge tag &apos;kbuild-7.0-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linuxPull Kbuild/Kconfig updates from Nathan Chancellor: &quot;Kbuild:   - Drop &apos;*_probe&apos; pattern from modpost section check allowlist, which     hid legitimate warnings (Johan Hovold)   - Disable -Wtype-limits altogether, instead of enabling at W=2     (Vincent Mailhol)   - Improve UAPI testing to skip testing headers that require a libc     when CONFIG_CC_CAN_LINK is not set, opening up testing of headers     with no libc dependencies to more environments (Thomas Wei&#223;schuh)   - Update gendwarfksyms documentation with required dependencies     (Jihan LIN)   - Reject invalid LLVM= values to avoid unintentionally falling back     to system toolchain (Thomas Wei&#223;schuh)   - Add a script to help run the kernel build process in a container     for consistent environments and testing (Guillaume Tucker)   - Simplify kallsyms by getting rid of the relative base (Ard     Biesheuvel)   - Performance and usability improvements to scripts/make_fit.py     (Simon Glass)   - Minor various clean ups and fixes  Kconfig:   - Move XPM icons to individual files, clearing up GTK deprecation     warnings (Rostislav Krasny)   - Support        depends on FOO if BAR     as syntactic sugar for        depends on FOO || !BAR     (Nicolas Pitre, Graham Roff)   - Refactor merge_config.sh to use awk over shell/sed/grep,     dramatically speeding up processing large number of config     fragments (Anders Roxell, Mikko Rapeli)&quot;* tag &apos;kbuild-7.0-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux: (39 commits)  kbuild: remove dependency of run-command on config  scripts/make_fit: Compress dtbs in parallel  scripts/make_fit: Support a few more parallel compressors  kbuild: Support a FIT_EXTRA_ARGS environment variable  scripts/make_fit: Move dtb processing into a function  scripts/make_fit: Support an initial ramdisk  scripts/make_fit: Speed up operation  rust: kconfig: Don&apos;t require RUST_IS_AVAILABLE for rustc-option  MAINTAINERS: Add scripts/install.sh into Kbuild entry  modpost: Amend ppc64 save/restfpr symnames for -Os build  MIPS: tools: relocs: Ship a definition of R_MIPS_PC32  streamline_config.pl: remove superfluous exclamation mark  kbuild: dummy-tools: Add python3  scripts: kconfig: merge_config.sh: warn on duplicate input files  scripts: kconfig: merge_config.sh: use awk in checks too  scripts: kconfig: merge_config.sh: refactor from shell/sed/grep to awk  kallsyms: Get rid of kallsyms relative base  mips: Add support for PC32 relocations in vmlinux  Documentation: dev-tools: add container.rst page  scripts: add tool to run containerized builds  ...

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Wed, 11 Feb 2026 22:40:35 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>18e2d526bf24525995d4312937e82d9b6810f663 - kconfig: move XPM icons to separate files</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#18e2d526bf24525995d4312937e82d9b6810f663</link>
        <description>kconfig: move XPM icons to separate filesReplace deprecated gdk_pixbuf_new_from_xpm_data() with gdk_pixbuf_new_from_file()and update both GTK and QT frontends to load XPM icons from separate filesin scripts/kconfig/icons/ instead of from the code.xpm_menu_inv and xpm_void were removed and not converted into xpm filesbecause they are not used since commit 64285dc5c41f (&quot;kconfig: gconf:inline fill_row() into set_node()&quot;).This eliminates the GTK deprecation warnings at compile time andimproves memory usage and code organization.Signed-off-by: Rostislav Krasny &lt;rostiprodev@gmail.com&gt;Acked-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Tested-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Link: https://patch.msgid.link/20251217015409.30102-2-rostiprodev@gmail.com[nathan: Minor commit message clean ups]Signed-off-by: Nathan Chancellor &lt;nathan@kernel.org&gt;

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Wed, 17 Dec 2025 02:54:09 +0100</pubDate>
        <dc:creator>Rostislav Krasny &lt;rostiprodev@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>1260ed77798502de9c98020040d2995008de10cc - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#1260ed77798502de9c98020040d2995008de10cc</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesBackmerging to get updates from v6.15-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Tue, 08 Apr 2025 10:15:47 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>946661e3bef8efa11ba8079d4ebafe6fc3b0aaad - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#946661e3bef8efa11ba8079d4ebafe6fc3b0aaad</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.15 merge window.

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Sat, 05 Apr 2025 08:04:35 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0b119045b79a672bc6d8f18641c60fc8ce1b4585 - Merge tag &apos;v6.14-rc4&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#0b119045b79a672bc6d8f18641c60fc8ce1b4585</link>
        <description>Merge tag &apos;v6.14-rc4&apos; into nextSync up with the mainline.

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Wed, 26 Feb 2025 01:03:25 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>9e676a024fa1fa2bd8150c2d2ba85478280353bc - Merge tag &apos;v6.14-rc1&apos; into perf-tools-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#9e676a024fa1fa2bd8150c2d2ba85478280353bc</link>
        <description>Merge tag &apos;v6.14-rc1&apos; into perf-tools-nextTo get the various fixes in the current master.Signed-off-by: Namhyung Kim &lt;namhyung@kernel.org&gt;

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Wed, 05 Feb 2025 23:57:18 +0100</pubDate>
        <dc:creator>Namhyung Kim &lt;namhyung@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>0410c6121529409b08e81a77ae3ee58c657e2243 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#0410c6121529409b08e81a77ae3ee58c657e2243</link>
        <description>Merge drm/drm-next into drm-xe-nextSync to fix conlicts between drm-xe-next and drm-intel-next.Signed-off-by: Lucas De Marchi &lt;lucas.demarchi@intel.com&gt;

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Fri, 28 Feb 2025 15:54:14 +0100</pubDate>
        <dc:creator>Lucas De Marchi &lt;lucas.demarchi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>93c7dd1b39444ebd5a6a98e56a363d7a4e646775 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#93c7dd1b39444ebd5a6a98e56a363d7a4e646775</link>
        <description>Merge drm/drm-next into drm-misc-nextBring rc1 to start the new release dev.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Thu, 06 Feb 2025 13:47:32 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ea9f8f2b21795a5d80418a655bcb212d5b89e08f - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#ea9f8f2b21795a5d80418a655bcb212d5b89e08f</link>
        <description>Merge drm/drm-next into drm-intel-nextSync with v6.14-rc1.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Wed, 05 Feb 2025 18:12:37 +0100</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>c771600c6af14749609b49565ffb4cac2959710d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#c771600c6af14749609b49565ffb4cac2959710d</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextWe need4ba4f1afb6a9 (&quot;perf: Generic hotplug support for a PMU with a scope&quot;)in order to land a i915 PMU simplification and a fix. That landed in 6.12and we are stuck at 6.9 so lets bump things forward.Signed-off-by: Tvrtko Ursulin &lt;tursulin@ursulin.net&gt;

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Wed, 05 Feb 2025 10:29:14 +0100</pubDate>
        <dc:creator>Tvrtko Ursulin &lt;tursulin@ursulin.net&gt;</dc:creator>
    </item>
<item>
        <title>ba6ec09911b805778a2fed6d626bfe77b011a717 - Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#ba6ec09911b805778a2fed6d626bfe77b011a717</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netCross-merge networking fixes after downstream PR (net-6.14-rc2).No conflicts or adjacent changes.Signed-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Fri, 07 Feb 2025 00:18:14 +0100</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b3cc7428a32202936904b5b07cf9f135025bafd6 - Merge branch &apos;for-6.15/amd_sfh&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#b3cc7428a32202936904b5b07cf9f135025bafd6</link>
        <description>Merge branch &apos;for-6.15/amd_sfh&apos; into for-linusFrom: Mario Limonciello &lt;mario.limonciello@amd.com&gt;Some platforms include a human presence detection (HPD) sensor. Whenenabled and a user is detected a wake event will be emitted from thesensor fusion hub that software can react to.Example use cases are &quot;wake from suspend on approach&quot; or to &quot;lockwhen leaving&quot;.This is currently enabled by default on supported systems, but userscan&apos;t control it. This essentially means that wake on approach isenabled which is a really surprising behavior to users that don&apos;texpect it.Instead of defaulting to enabled add a sysfs knob that users canuse to enable the feature if desirable and set it to disabled bydefault.

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Wed, 26 Mar 2025 13:42:07 +0100</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>fd8c09ad0d87783b9b6a27900d66293be45b7bad - Merge tag &apos;kbuild-v6.14&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#fd8c09ad0d87783b9b6a27900d66293be45b7bad</link>
        <description>Merge tag &apos;kbuild-v6.14&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuildPull Kbuild updates from Masahiro Yamada: - Support multiple hook locations for maint scripts of Debian package - Remove &apos;cpio&apos; from the build tool requirement - Introduce gendwarfksyms tool, which computes CRCs for export symbols   based on the DWARF information - Support CONFIG_MODVERSIONS for Rust - Resolve all conflicts in the genksyms parser - Fix several syntax errors in genksyms* tag &apos;kbuild-v6.14&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild: (64 commits)  kbuild: fix Clang LTO with CONFIG_OBJTOOL=n  kbuild: Strip runtime const RELA sections correctly  kconfig: fix memory leak in sym_warn_unmet_dep()  kconfig: fix file name in warnings when loading KCONFIG_DEFCONFIG_LIST  genksyms: fix syntax error for attribute before init-declarator  genksyms: fix syntax error for builtin (u)int*x*_t types  genksyms: fix syntax error for attribute after &apos;union&apos;  genksyms: fix syntax error for attribute after &apos;struct&apos;  genksyms: fix syntax error for attribute after abstact_declarator  genksyms: fix syntax error for attribute before nested_declarator  genksyms: fix syntax error for attribute before abstract_declarator  genksyms: decouple ATTRIBUTE_PHRASE from type-qualifier  genksyms: record attributes consistently for init-declarator  genksyms: restrict direct-declarator to take one parameter-type-list  genksyms: restrict direct-abstract-declarator to take one parameter-type-list  genksyms: remove Makefile hack  genksyms: fix last 3 shift/reduce conflicts  genksyms: fix 6 shift/reduce conflicts and 5 reduce/reduce conflicts  genksyms: reduce type_qualifier directly to decl_specifier  genksyms: rename cvar_qualifier to type_qualifier  ...

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Fri, 31 Jan 2025 21:07:07 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>1f937a4bcb0472015818f30f4d3c5546d3f09933 - kbuild: suppress stdout from merge_config for silent builds</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#1f937a4bcb0472015818f30f4d3c5546d3f09933</link>
        <description>kbuild: suppress stdout from merge_config for silent buildsmerge_config does not respect the Make&apos;s -s (--silent) option.Let&apos;s sink the stdout from merge_config for silent builds.This commit does not cater to the direct invocation of merge_config.sh(e.g. arch/mips/Makefile).Reported-by: Leon Romanovsky &lt;leon@kernel.org&gt;Closes: https://lore.kernel.org/all/e534ce33b0e1060eb85ece8429810f087b034c88.1733234008.git.leonro@nvidia.com/Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Tested-by: Leon Romanovsky &lt;leon@kernel.org&gt;Reviewed-by: Nathan Chancellor &lt;nathan@kernel.org&gt;

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Tue, 10 Dec 2024 11:24:41 +0100</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>36ec807b627b4c0a0a382f0ae48eac7187d14b2b - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#36ec807b627b4c0a0a382f0ae48eac7187d14b2b</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.12 merge window.

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Fri, 20 Sep 2024 10:24:24 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>3daee2e4b3568f0ed88b0598df96547fcf21cb9b - Merge tag &apos;v6.10&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#3daee2e4b3568f0ed88b0598df96547fcf21cb9b</link>
        <description>Merge tag &apos;v6.10&apos; into nextSync up with mainline to bring in device_for_each_child_node_scoped()and other newer APIs.

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Tue, 16 Jul 2024 00:50:05 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>a23e1966932464e1c5226cb9ac4ce1d5fc10ba22 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#a23e1966932464e1c5226cb9ac4ce1d5fc10ba22</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.11 merge window.

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Mon, 15 Jul 2024 23:03:44 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>6f47c7ae8c7afaf9ad291d39f0d3974f191a7946 - Merge tag &apos;v6.9&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/kconfig/Makefile#6f47c7ae8c7afaf9ad291d39f0d3974f191a7946</link>
        <description>Merge tag &apos;v6.9&apos; into nextSync up with the mainline to bring in the new cleanup API.

            List of files:
            /linux/scripts/kconfig/Makefile</description>
        <pubDate>Tue, 28 May 2024 06:37:18 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
