<?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>0fc8f6200d2313278fbf4539bbab74677c685531 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#0fc8f6200d2313278fbf4539bbab74677c685531</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesGetting fixes and updates from v7.1-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Mon, 27 Apr 2026 10:26:49 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>8541d8f725c673db3bd741947f27974358b2e163 - Merge tag &apos;mtd/for-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#8541d8f725c673db3bd741947f27974358b2e163</link>
        <description>Merge tag &apos;mtd/for-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linuxPull MTD updates from Miquel Raynal: &quot;MTD changes:   - mtdconcat finally makes it in, after several years of being merged     and reverted   - Baikal SoC support is being removed, so MTD bits are being removed     as well   - misc cleanups  NAND changes:   - SunXi driver support for new versions of the Allwinner NAND     controller.   - DT-binding improvements and cleanups.   - A few fixes (Realtek ECC and Winbond SPI NAND), aside with the     usual load of misc changes.  SPI NOR fixes:   - Enable die erase on MT35XU02GCBA. We knew this flash needed this     fixup since 7f77c561e227 (&quot;mtd: spi-nor: micron-st: add TODO for     fixing mt35xu02gcba&quot;) but did not add it due to lack of hardware to     test on.   - Fix locking on some Winbond w25q series flashes.   - Fix Auto Address Increment (AAI) writes on SST that flashes that     start on odd address. The write enable latch needs to be set again     after the single byte program&quot;* tag &apos;mtd/for-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux: (44 commits)  mtd: spinand: winbond: Declare the QE bit on W25NxxJW  mtd: spi-nor: micron-st: Enable die erase support for MT35XU02GCBA  mtd: spi-nor: winbond: Fix locking support for w25q256jw  mtd: spi-nor: sst: Fix write enable before AAI sequence  mtd: spi-nor: winbond: Fix locking support for w25q64jvm  mtd: spi-nor: winbond: Fix locking support for w25q256jwm  dt-bindings: mtd: mxc-nand: add missing compatible string and ref to nand-controller-legacy.yaml  dt-bindings: mtd: gpmi-nand: ref to nand-controller-legacy.yaml  dt-bindings: mtd: refactor NAND bindings and add nand-controller-legacy.yaml  mtd: spinand: winbond: Clarify when to enable the HS bit  mtd: rawnand: sunxi: introduce maximize variable user data length  mtd: rawnand: sunxi: fix typos in comments  mtd: rawnand: sunxi: change error prone variable name  mtd: rawnand: sunxi: remove dead code  mtd: rawnand: sunxi: make the code more self-explanatory  mtd: rawnand: sunxi: replace hard coded value by a define - take2  mtd: rawnand: sunxi: do not count BBM bytes twice  mtd: rawnand: sunxi: fix sunxi_nfc_hw_ecc_read_extra_oob  mtd: rawnand: sunxi: sunxi_nand_ooblayout_free code clarification  mtd: cmdlinepart: use a flexible array member  ...

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Sat, 18 Apr 2026 02:57:04 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>43db6366fc2de02050e66389f5628d3fdc9af10a - mtd: Add driver for concatenating devices</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#43db6366fc2de02050e66389f5628d3fdc9af10a</link>
        <description>mtd: Add driver for concatenating devicesIntroducing CONFIG_MTD_VIRT_CONCAT to separate the legacy flow from the newapproach, where only the concatenated partition is registered as an MTDdevice, while the individual partitions that form it are not registeredindependently, as they are typically not required by the user.CONFIG_MTD_VIRT_CONCAT is a boolean configuration option that depends onCONFIG_MTD_PARTITIONED_MASTER. When enabled, it allows flash nodes to beexposed as individual MTD devices along with the other partitions.The solution focuses on fixed-partitions description only as it depends ondevice boundaries. It supports multiple sets of concatenated devices, eachcomprising two or more partitions.    flash@0 {            reg = &lt;0&gt;;            partitions {                    compatible = &quot;fixed-partitions&quot;;                    part0@0 {                            part-concat-next = &lt;&amp;flash0_part1&gt;;                            label = &quot;part0_0&quot;;                            reg = &lt;0x0 0x800000&gt;;                    };                    flash0_part1: part1@800000 {                            label = &quot;part0_1&quot;;                            reg = &lt;800000 0x800000&gt;;                    };                    part2@1000000 {                            part-concat-next = &lt;&amp;flash1_part0&gt;;                            label = &quot;part0_2&quot;;                            reg = &lt;0x800000 0x800000&gt;;                    };            };    };    flash@1 {            reg = &lt;1&gt;;            partitions {                    compatible = &quot;fixed-partitions&quot;;                    flash1_part0: part1@0 {                            label = &quot;part1_0&quot;;                            reg = &lt;0x0 0x800000&gt;;                    };                    part1@800000 {                            label = &quot;part1_1&quot;;                            reg = &lt;0x800000 0x800000&gt;;                    };            };    };The partitions that gets created areflash@0part0_0-part0_1-concatflash@1part1_1part0_2-part1_0-concatSuggested-by: Bernhard Frauendienst &lt;kernel@nospam.obeliks.de&gt;Suggested-by: Miquel Raynal &lt;miquel.raynal@bootlin.com&gt;Signed-off-by: Amit Kumar Mahapatra &lt;amit.kumar-mahapatra@amd.com&gt;Signed-off-by: Luca Ceresoli &lt;luca.ceresoli@bootlin.com&gt;Signed-off-by: Miquel Raynal &lt;miquel.raynal@bootlin.com&gt;

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Wed, 04 Feb 2026 09:32:18 +0100</pubDate>
        <dc:creator>Amit Kumar Mahapatra &lt;amit.kumar-mahapatra@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>4b4193256c8d3bc3a5397b5cd9494c2ad386317d - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#4b4193256c8d3bc3a5397b5cd9494c2ad386317d</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 5.11 merge window.

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Tue, 15 Dec 2020 01:27:23 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>05909cd9a0c8811731b38697af13075e8954314f - Merge tag &apos;v5.9&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#05909cd9a0c8811731b38697af13075e8954314f</link>
        <description>Merge tag &apos;v5.9&apos; into nextSync up with mainline to bring in the latest DTS files.

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Wed, 18 Nov 2020 03:13:23 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>ead5d1f4d877e92c051e1a1ade623d0d30e71619 - Merge branch &apos;master&apos; into for-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#ead5d1f4d877e92c051e1a1ade623d0d30e71619</link>
        <description>Merge branch &apos;master&apos; into for-nextSync with Linus&apos; branch in order to be able to apply fixupsof more recent patches.

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Tue, 01 Sep 2020 14:19:48 +0200</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.cz&gt;</dc:creator>
    </item>
<item>
        <title>3b5d1afd1f13bcab85eaa28223ad396694f929e3 - Merge branch &apos;for-next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#3b5d1afd1f13bcab85eaa28223ad396694f929e3</link>
        <description>Merge branch &apos;for-next&apos; into for-linus

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Mon, 03 Aug 2020 08:10:08 +0200</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>98817a84ff1c755c347ac633ff017a623a631fad - Merge tag &apos;irqchip-fixes-5.8-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/urgent</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#98817a84ff1c755c347ac633ff017a623a631fad</link>
        <description>Merge tag &apos;irqchip-fixes-5.8-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/urgentPull irqchip fixes from Marc Zyngier: - Fix atomicity of affinity update in the GIC driver - Don&apos;t sleep in atomic when waiting for a GICv4.1 RD to respond - Fix a couple of typos in user-visible messages

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Tue, 30 Jun 2020 12:07:51 +0200</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>77346a704c913268a2dad68d59523fd85dc74088 - Merge tag &apos;v5.8-rc3&apos; into arm/qcom</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#77346a704c913268a2dad68d59523fd85dc74088</link>
        <description>Merge tag &apos;v5.8-rc3&apos; into arm/qcomLinux 5.8-rc3

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Tue, 30 Jun 2020 11:32:02 +0200</pubDate>
        <dc:creator>Joerg Roedel &lt;jroedel@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>60e9eabf41fa916d2ef68c5bf929197975917578 - Backmerge remote-tracking branch &apos;drm/drm-next&apos; into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#60e9eabf41fa916d2ef68c5bf929197975917578</link>
        <description>Backmerge remote-tracking branch &apos;drm/drm-next&apos; into drm-misc-nextSome conflicts with ttm_bo-&gt;offset removal, but drm-misc-next needs updating to v5.8.Signed-off-by: Maarten Lankhorst &lt;maarten.lankhorst@linux.intel.com&gt;

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Mon, 29 Jun 2020 12:15:51 +0200</pubDate>
        <dc:creator>Maarten Lankhorst &lt;maarten.lankhorst@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>0f69403d2535ffc7200a8414cf3ca66a49b0d741 - Merge drm/drm-next into drm-intel-next-queued</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#0f69403d2535ffc7200a8414cf3ca66a49b0d741</link>
        <description>Merge drm/drm-next into drm-intel-next-queuedCatch up with upstream, in particular to get c1e8d7c6a7a6 (&quot;mmap lockingAPI: convert mmap_sem comments&quot;).Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Thu, 25 Jun 2020 17:05:03 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>6870112c46c867f50cd27570860a05bd82614b5c - Merge tag &apos;v5.8-rc1&apos; into regulator-5.8</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#6870112c46c867f50cd27570860a05bd82614b5c</link>
        <description>Merge tag &apos;v5.8-rc1&apos; into regulator-5.8Linux 5.8-rc1

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Wed, 17 Jun 2020 13:39:12 +0200</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>07c7b547a79605f1041d55b84d91a4a4d9c5b363 - Merge tag &apos;v5.8-rc1&apos; into fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#07c7b547a79605f1041d55b84d91a4a4d9c5b363</link>
        <description>Merge tag &apos;v5.8-rc1&apos; into fixesLinux 5.8-rc1

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Tue, 16 Jun 2020 18:25:03 +0200</pubDate>
        <dc:creator>Tony Lindgren &lt;tony@atomide.com&gt;</dc:creator>
    </item>
<item>
        <title>4b3c1f1b15f576445c221cbc77a88540433a2ba7 - Merge v5.8-rc1 into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#4b3c1f1b15f576445c221cbc77a88540433a2ba7</link>
        <description>Merge v5.8-rc1 into drm-misc-fixesBeginning a new release cycles for what will become v5.8. Updatingdrm-misc-fixes accordingly.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Tue, 16 Jun 2020 13:31:47 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>8440d4a75d90556cfb8fb3e244443f67381aafd6 - Merge branch &apos;dt/schema-cleanups&apos; into dt/linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#8440d4a75d90556cfb8fb3e244443f67381aafd6</link>
        <description>Merge branch &apos;dt/schema-cleanups&apos; into dt/linus

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Fri, 12 Jun 2020 17:57:00 +0200</pubDate>
        <dc:creator>Rob Herring &lt;robh@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>f77d26a9fc525286bcef3d4f98b52e17482cf49c - Merge branch &apos;x86/entry&apos; into ras/core</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#f77d26a9fc525286bcef3d4f98b52e17482cf49c</link>
        <description>Merge branch &apos;x86/entry&apos; into ras/coreto fixup conflicts in arch/x86/kernel/cpu/mce/core.c so MCE specific followup patches can be applied without creating a horrible merge conflictafterwards.

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Thu, 11 Jun 2020 15:17:57 +0200</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>829f3b9401fe7cc3c1f3642bb2520751a42a87df - Merge tag &apos;pstore-v5.8-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#829f3b9401fe7cc3c1f3642bb2520751a42a87df</link>
        <description>Merge tag &apos;pstore-v5.8-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linuxPull pstore updates from Kees Cook: &quot;Fixes and new features for pstore.  This is a pretty big set of changes (relative to past pstore pulls),  but it has been in -next for a while. The biggest change here is the  ability to support a block device as a pstore backend, which has been  desired for a while. A lot of additional fixes and refactorings are  also included, mostly in support of the new features.   - refactor pstore locking for safer module unloading (Kees Cook)   - remove orphaned records from pstorefs when backend unloaded (Kees     Cook)   - refactor dump_oops parameter into max_reason (Pavel Tatashin)   - introduce pstore/zone for common code for contiguous storage     (WeiXiong Liao)   - introduce pstore/blk for block device backend (WeiXiong Liao)   - introduce mtd backend (WeiXiong Liao)&quot;* tag &apos;pstore-v5.8-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux: (35 commits)  mtd: Support kmsg dumper based on pstore/blk  pstore/blk: Introduce &quot;best_effort&quot; mode  pstore/blk: Support non-block storage devices  pstore/blk: Provide way to query pstore configuration  pstore/zone: Provide way to skip &quot;broken&quot; zone for MTD devices  Documentation: Add details for pstore/blk  pstore/zone,blk: Add ftrace frontend support  pstore/zone,blk: Add console frontend support  pstore/zone,blk: Add support for pmsg frontend  pstore/blk: Introduce backend for block devices  pstore/zone: Introduce common layer to manage storage zones  ramoops: Add &quot;max-reason&quot; optional field to ramoops DT node  pstore/ram: Introduce max_reason and convert dump_oops  pstore/platform: Pass max_reason to kmesg dump  printk: Introduce kmsg_dump_reason_str()  printk: honor the max_reason field in kmsg_dumper  printk: Collapse shutdown types into a single dump reason  pstore/ftrace: Provide ftrace log merging routine  pstore/ram: Refactor ftrace buffer merging  pstore/ram: Refactor DT size parsing  ...

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Mon, 01 Jun 2020 21:07:34 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>78c08247b9d3e03192f8b359aa079024e805a948 - mtd: Support kmsg dumper based on pstore/blk</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#78c08247b9d3e03192f8b359aa079024e805a948</link>
        <description>mtd: Support kmsg dumper based on pstore/blkThis introduces mtdpstore, which is similar to mtdoops but morepowerful. It uses pstore/blk, and aims to store panic and oops logs toa flash partition, where pstore can later read back and present as filesin the mounted pstore filesystem.To make mtdpstore work, the &quot;blkdev&quot; of pstore/blk should be setas MTD device name or MTD device number. For more details, seeDocumentation/admin-guide/pstore-blk.rstThis solves a number of issues:- Work duplication: both of pstore and mtdoops do the same job storing  panic/oops log. They have very similar logic, registering to kmsg  dumper and storing logs to several chunks one by one.- Layer violations: drivers should provides methods instead of polices.  MTD should provide read/write/erase operations, and allow a higher  level drivers to provide the chunk management, kmsg dump  configuration, etc.- Missing features: pstore provides many additional features, including  presenting the logs as files, logging dump time and count, and  supporting other frontends like pmsg, console, etc.Signed-off-by: WeiXiong Liao &lt;liaoweixiong@allwinnertech.com&gt;Link: https://lore.kernel.org/lkml/20200511233229.27745-11-keescook@chromium.org/Link: https://lore.kernel.org/r/1589266715-4168-1-git-send-email-liaoweixiong@allwinnertech.comSigned-off-by: Kees Cook &lt;keescook@chromium.org&gt;

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Wed, 25 Mar 2020 09:55:06 +0100</pubDate>
        <dc:creator>WeiXiong Liao &lt;liaoweixiong@allwinnertech.com&gt;</dc:creator>
    </item>
<item>
        <title>976e3645923bdd2fe7893aae33fd7a21098bfb28 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#976e3645923bdd2fe7893aae33fd7a21098bfb28</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 5.5 merge window.

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Mon, 25 Nov 2019 22:26:56 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>9f4813b531a0b8cc502fcfb142937fe4e9104d77 - Merge tag &apos;v5.4-rc8&apos; into WIP.x86/mm, to pick up fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Makefile#9f4813b531a0b8cc502fcfb142937fe4e9104d77</link>
        <description>Merge tag &apos;v5.4-rc8&apos; into WIP.x86/mm, to pick up fixesSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/drivers/mtd/Makefile</description>
        <pubDate>Tue, 19 Nov 2019 09:00:45 +0100</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
