<?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 ip22_defconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>08c7183f5b9ffe4408e74fff848a4cc2105361d4 - Merge tag &apos;mips_7.2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#08c7183f5b9ffe4408e74fff848a4cc2105361d4</link>
        <description>Merge tag &apos;mips_7.2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linuxPull MIPS updates from Thomas Bogendoerfer: - use software nodes for GPIO code - cleanups and fixes* tag &apos;mips_7.2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux: (41 commits)  mips: select legacy gpiolib interfaces where used  MIPS: lib: Remove &apos;.hidden&apos; for local symbols  MIPS: VDSO: Avoid including .got in dynamic segment  MIPS: smp: report dying CPU to RCU in stop_this_cpu()  MIPS: kernel: proc: Delete unnecessary braces in show_cpuinfo()  MIPS: kernel: proc: Use seq_putc() calls in show_cpuinfo()  mips: sched: Fix CPUMASK_OFFSTACK memory corruption  MIPS: mm: Fix out-of-bounds write in maar_res_walk()  MIPS: ath79: reduce ARCH_DMA_MINALIGN  mips: dts: ar9132: fix wdt node name  mips: Remove remaining defconfig references to the pktcdvd driver  MIPS: mm: remove comment referring to removed CONFIG_MIPS_CMP  MIPS: alchemy: db1300: switch to static device properties  MIPS: alchemy: gpr: switch to static device properties  MIPS: alchemy: db1000: use nodes attached to GPIO chips in properties  MIPS: alchemy: mtx1: attach software nodes to GPIO chips  MIPS: alchemy: provide visible function prototypes to board files  MIPS: alchemy: platform: add missing include  MIPS: ip22-gio: do not export device release function  MIPS: ip22-gio: switch to dynamic root device  ...

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Fri, 19 Jun 2026 16:46:16 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>10fd82791fda5a52da0821eb6b50fbd09c8b3282 - mips: Remove remaining defconfig references to the pktcdvd driver</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#10fd82791fda5a52da0821eb6b50fbd09c8b3282</link>
        <description>mips: Remove remaining defconfig references to the pktcdvd driverCommit 1cea5180f2f8 (&quot;block: remove pktcdvd driver&quot;) left behind someCONFIG_CONFIG_CDROM_PKTCDVD references in defconfigs. Remove them.Signed-off-by: Catalin Iacob &lt;iacobcatalin@gmail.com&gt;Signed-off-by: Thomas Bogendoerfer &lt;tsbogend@alpha.franken.de&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Mon, 08 Jun 2026 16:29:17 +0200</pubDate>
        <dc:creator>Catalin Iacob &lt;iacobcatalin@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>1967bfaf7ba15dc179a7e3325e880736efbcdf62 - crypto: pcbc - Remove support for PCBC mode</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#1967bfaf7ba15dc179a7e3325e880736efbcdf62</link>
        <description>crypto: pcbc - Remove support for PCBC modeThe only user of PCBC mode (Propagating Cipher Block Chaining mode) wasnet/rxrpc/rxkad.c, which now uses local code instead.While PCBC was an interesting cryptographic experiment, it has largelybeen relegated to the history books and academic exercises.  It isnon-parallelizable (i.e., very slow) and doesn&apos;t actually achieve theintegrity properties it was apparently intended to achieve.Remove support for it from the crypto API.Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt; # m68kAcked-by: David Howells &lt;dhowells@redhat.com&gt;Signed-off-by: Eric Biggers &lt;ebiggers@kernel.org&gt;Tested-by: Marc Dionne &lt;marc.dionne@auristor.com&gt;Link: https://patch.msgid.link/20260522050740.84561-6-ebiggers@kernel.orgSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Fri, 22 May 2026 07:07:36 +0200</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>374efbdc85d027814f6b26a8d641dc062f9017c0 - crypto: fcrypt - Remove support for FCrypt block cipher</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#374efbdc85d027814f6b26a8d641dc062f9017c0</link>
        <description>crypto: fcrypt - Remove support for FCrypt block cipherRemove the insecure FCrypt block cipher from the crypto API.  Its onlyuser was net/rxrpc/, but now net/rxrpc/ implements it locally.  Thecrypto API implementation is no longer needed.For some additional context: FCrypt was designed in 1988 and isessentially a weakened version of DES.  It has the same 56-bit key sizeas DES, which is easily brute forced.  Moreover, it&apos;s cryptographicallyweak and doesn&apos;t even provide the intended 56-bit security level.  Itsauthor considers it to be a mistake, as well(https://lists.openafs.org/pipermail/openafs-devel/2000-December/005320.html).But fortunately this 1980s-era homebrew block cipher was never adoptedoutside of net/rxrpc/.  So its code can just be kept there.Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt; # m68kAcked-by: David Howells &lt;dhowells@redhat.com&gt;Signed-off-by: Eric Biggers &lt;ebiggers@kernel.org&gt;Tested-by: Marc Dionne &lt;marc.dionne@auristor.com&gt;Link: https://patch.msgid.link/20260522050740.84561-5-ebiggers@kernel.orgSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Fri, 22 May 2026 07:07:35 +0200</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c065b6046b3493a878c2ceb810aed845431badb4 - Use CONFIG_EXT4_FS instead of CONFIG_EXT3_FS in all of the defconfigs</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#c065b6046b3493a878c2ceb810aed845431badb4</link>
        <description>Use CONFIG_EXT4_FS instead of CONFIG_EXT3_FS in all of the defconfigsCommit d6ace46c82fd (&quot;ext4: remove obsolete EXT3 config options&quot;)removed the obsolete EXT3_CONFIG options, since it had been over adecade since fs/ext3 had been removed.  Unfortunately, there were anumber of defconfigs that still used CONFIG_EXT3_FS which the cleanupcommit didn&apos;t fix up.  This led to a large number of defconfig testbuilds to fail.  Oops.Fixes: d6ace46c82fd (&quot;ext4: remove obsolete EXT3 config options&quot;)Signed-off-by: Theodore Ts&apos;o &lt;tytso@mit.edu&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Tue, 14 Oct 2025 03:50:40 +0200</pubDate>
        <dc:creator>Theodore Ts&apos;o &lt;tytso@mit.edu&gt;</dc:creator>
    </item>
<item>
        <title>fd72f265bb00d2dd2a3bbad7ec45520025e3a926 - netfilter: conntrack: remove DCCP protocol support</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#fd72f265bb00d2dd2a3bbad7ec45520025e3a926</link>
        <description>netfilter: conntrack: remove DCCP protocol supportThe DCCP socket family has now been removed from this tree, see:  8bb3212be4b4 (&quot;Merge branch &apos;net-retire-dccp-socket&apos;&quot;)Remove connection tracking and NAT support for this protocol, thisshould not pose a problem because no DCCP traffic is expected to be seenon the wire.As for the code for matching on dccp header for iptables and nftables,mark it as deprecated and keep it in place. Ruleset restoration is anatomic operation. Without dccp matching support, an astray match on dccpcould break this operation leaving your computer with no policy inplace, so let&apos;s follow a more conservative approach for matches.Add CONFIG_NFT_EXTHDR_DCCP which is set to &apos;n&apos; by default to deprecatedccp extension support. Similarly, label CONFIG_NETFILTER_XT_MATCH_DCCPas deprecated too and also set it to &apos;n&apos; by default.Code to match on DCCP protocol from ebtables also remains in place, thisis just a few checks on IPPROTO_DCCP from _check() path which isexercised when ruleset is loaded. There is another use of IPPROTO_DCCPfrom the _check() path in the iptables multiport match. Another checkfor IPPROTO_DCCP from the packet in the reject target is also removed.So let&apos;s schedule removal of the dccp matching for a second stage, thisshould not interfer with the dccp retirement since this is only matchingon the dccp header.Cc: &quot;David S. Miller&quot; &lt;davem@davemloft.net&gt;Cc: Eric Dumazet &lt;edumazet@google.com&gt;Cc: Jakub Kicinski &lt;kuba@kernel.org&gt;Cc: Paolo Abeni &lt;pabeni@redhat.com&gt;Cc: Kuniyuki Iwashima &lt;kuniyu@amazon.com&gt;Reviewed-by: Simon Horman &lt;horms@kernel.org&gt;Signed-off-by: Pablo Neira Ayuso &lt;pablo@netfilter.org&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Thu, 22 May 2025 16:52:23 +0200</pubDate>
        <dc:creator>Pablo Neira Ayuso &lt;pablo@netfilter.org&gt;</dc:creator>
    </item>
<item>
        <title>a6d0dbba950880e269d433222ca6d516ebe8a6ae - lib/crc: remove unnecessary prompt for CONFIG_CRC_T10DIF</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#a6d0dbba950880e269d433222ca6d516ebe8a6ae</link>
        <description>lib/crc: remove unnecessary prompt for CONFIG_CRC_T10DIFAll modules that need CONFIG_CRC_T10DIF already select it, so there is noneed to bother users about the option.Reviewed-by: Christoph Hellwig &lt;hch@lst.de&gt;Reviewed-by: &quot;Martin K. Petersen&quot; &lt;martin.petersen@oracle.com&gt;Acked-by: Ard Biesheuvel &lt;ardb@kernel.org&gt;Link: https://lore.kernel.org/r/20250401221600.24878-5-ebiggers@kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@google.com&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Wed, 02 Apr 2025 00:15:57 +0200</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>355d63e5de95de72561891b4d17b83ba82cfe42a - arch: mips: defconfig: Drop obsolete CONFIG_NET_CLS_TCINDEX</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#355d63e5de95de72561891b4d17b83ba82cfe42a</link>
        <description>arch: mips: defconfig: Drop obsolete CONFIG_NET_CLS_TCINDEXThis option was removed from the Kconfig in commit8c710f75256b (&quot;net/sched: Retire tcindex classifier&quot;) but it was notremoved from the defconfigs.Fixes: 8c710f75256b (&quot;net/sched: Retire tcindex classifier&quot;)Signed-off-by: Johan Korsnes &lt;johan.korsnes@gmail.com&gt;Cc: Thomas Bogendoerfer &lt;tsbogend@alpha.franken.de&gt;Signed-off-by: Thomas Bogendoerfer &lt;tsbogend@alpha.franken.de&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Sun, 23 Mar 2025 20:07:34 +0100</pubDate>
        <dc:creator>Johan Korsnes &lt;johan.korsnes@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>6d6d80e4f6bcb6d975475377c34818f7f7d48eaa - net/sched: Remove CONFIG_NET_ACT_IPT from default configs</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#6d6d80e4f6bcb6d975475377c34818f7f7d48eaa</link>
        <description>net/sched: Remove CONFIG_NET_ACT_IPT from default configsNow that we are retiring the IPT action.Reviewed-by: Victor Noguiera &lt;victor@mojatatu.com&gt;Reviewed-by: Pedro Tammela &lt;pctammela@mojatatu.com&gt;Signed-off-by: Jamal Hadi Salim &lt;jhs@mojatatu.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Thu, 21 Dec 2023 22:31:04 +0100</pubDate>
        <dc:creator>Jamal Hadi Salim &lt;jhs@mojatatu.com&gt;</dc:creator>
    </item>
<item>
        <title>ac2224a467b499730057525924f6be3f4fdb0da5 - Merge tag &apos;mips_6.6&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#ac2224a467b499730057525924f6be3f4fdb0da5</link>
        <description>Merge tag &apos;mips_6.6&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linuxPull MIPS updates from Thomas Bogendoerfer: &quot;Just cleanups and fixes&quot;* tag &apos;mips_6.6&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux:  MIPS: TXx9: Do PCI error checks on own line  arch/mips/configs/*_defconfig cleanup  MIPS: VDSO: Conditionally export __vdso_gettimeofday()  Mips: loongson3_defconfig: Enable ast drm driver by default  mips: remove &lt;asm/export.h&gt;  mips: replace #include &lt;asm/export.h&gt; with #include &lt;linux/export.h&gt;  mips: remove unneeded #include &lt;asm/export.h&gt;  MIPS: Loongson64: Fix more __iomem attributes  MIPS: loongson32: Remove regs-rtc.h  MIPS: loongson32: Remove regs-clk.h  MIPS: More explicit DT include clean-ups  MIPS: Fixup explicit DT include clean-up  Revert MIPS: Loongson: Fix build error when make modules_install  MIPS: Only fiddle with CHECKFLAGS if `need-compiler&apos;  MIPS: Fix CONFIG_CPU_DADDI_WORKAROUNDS `modules_install&apos; regression  MIPS: Explicitly include correct DT includes

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Thu, 07 Sep 2023 19:35:14 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>d913ff561140dd89104dcb01846d789835a5cdc3 - arch/mips/configs/*_defconfig cleanup</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#d913ff561140dd89104dcb01846d789835a5cdc3</link>
        <description>arch/mips/configs/*_defconfig cleanupDrop CONFIG_IP_NF_TARGET_CLUSTERIP from any remaining mips defconfigs as itwas removed in commit 9db5d918e2c0 (&quot;netfilter: ip_tables: remove clusteriptarget&quot;).Signed-off-by: Trevor Woerner &lt;twoerner@gmail.com&gt;Reviewed-by: Philippe Mathieu-Daud&#233; &lt;philmd@linaro.org&gt;Signed-off-by: Thomas Bogendoerfer &lt;tsbogend@alpha.franken.de&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Thu, 17 Aug 2023 13:50:13 +0200</pubDate>
        <dc:creator>Trevor Woerner &lt;twoerner@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>1f2190d6b7112d22d3f8dfeca16a2f6a2f51444e - arch/*/configs/*defconfig: Replace AUTOFS4_FS by AUTOFS_FS</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#1f2190d6b7112d22d3f8dfeca16a2f6a2f51444e</link>
        <description>arch/*/configs/*defconfig: Replace AUTOFS4_FS by AUTOFS_FSCommit a2225d931f75 (&quot;autofs: remove left-over autofs4 stubs&quot;)promised the removal of the fs/autofs/Kconfig fragment for AUTOFS4_FSwithin a couple of releases, but five years later this still has nothappened yet, and AUTOFS4_FS is still enabled in 63 defconfigs.Get rid of it mechanically:   git grep -l CONFIG_AUTOFS4_FS -- &apos;*defconfig&apos; |       xargs sed -i &apos;s/AUTOFS4_FS/AUTOFS_FS/&apos;Also just remove the AUTOFS4_FS config option stub.  Anybody who hasn&apos;tregenerated their config file in the last five years will need to justget the new name right when they do.Signed-off-by: Sven Joachim &lt;svenjoac@gmx.de&gt;Acked-by: Ian Kent &lt;raven@themaw.net&gt;Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Thu, 27 Jul 2023 22:00:41 +0200</pubDate>
        <dc:creator>Sven Joachim &lt;svenjoac@gmx.de&gt;</dc:creator>
    </item>
<item>
        <title>eb07c4f39c3e858a7d0cc4bb15b8a304f83f0497 - mm/slab: rename CONFIG_SLAB to CONFIG_SLAB_DEPRECATED</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#eb07c4f39c3e858a7d0cc4bb15b8a304f83f0497</link>
        <description>mm/slab: rename CONFIG_SLAB to CONFIG_SLAB_DEPRECATEDAs discussed at LSF/MM [1] [2] and with no objections raised there,deprecate the SLAB allocator. Rename the user-visible option so thatusers with CONFIG_SLAB=y get a new prompt with explanation during makeoldconfig, while make olddefconfig will just switch to SLUB.In all defconfigs with CONFIG_SLAB=y remove the line so those alsoswitch to SLUB. Regressions due to the switch should be reported tolinux-mm and slab maintainers.[1] https://lore.kernel.org/all/4b9fc9c6-b48c-198f-5f80-811a44737e5f@suse.cz/[2] https://lwn.net/Articles/932201/Signed-off-by: Vlastimil Babka &lt;vbabka@suse.cz&gt;Acked-by: Hyeonggon Yoo &lt;42.hyeyoo@gmail.com&gt;Acked-by: David Rientjes &lt;rientjes@google.com&gt;Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt; # m68kAcked-by: Helge Deller &lt;deller@gmx.de&gt; # parisc

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Tue, 23 May 2023 09:06:34 +0200</pubDate>
        <dc:creator>Vlastimil Babka &lt;vbabka@suse.cz&gt;</dc:creator>
    </item>
<item>
        <title>84aff0b6905c1101aab1525c2d649127f307218b - mips: update config files</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#84aff0b6905c1101aab1525c2d649127f307218b</link>
        <description>mips: update config filesClean up config files by:  - removing configs that were deleted in the past  - removing configs not in tree and without recently pending patches  - adding new configs that are replacements for old configs in the fileFor some detailed information, see Link.Link: https://lore.kernel.org/kernel-janitors/20220929090645.1389-1-lukas.bulwahn@gmail.com/Signed-off-by: Lukas Bulwahn &lt;lukas.bulwahn@gmail.com&gt;Signed-off-by: Thomas Bogendoerfer &lt;tsbogend@alpha.franken.de&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Thu, 29 Sep 2022 12:14:51 +0200</pubDate>
        <dc:creator>Lukas Bulwahn &lt;lukas.bulwahn@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>f3e4080edd2754abbdc3daf9881b1f6e168c6669 - arch: Remove references to CONFIG_NFSD_V3 in the default configs</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#f3e4080edd2754abbdc3daf9881b1f6e168c6669</link>
        <description>arch: Remove references to CONFIG_NFSD_V3 in the default configsCONFIG_NFSD_V3 has been removed. NFSD support for NFSv3 can nolonger be disabled.Signed-off-by: Chuck Lever &lt;chuck.lever@oracle.com&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Mon, 14 Feb 2022 17:12:09 +0100</pubDate>
        <dc:creator>Chuck Lever &lt;chuck.lever@oracle.com&gt;</dc:creator>
    </item>
<item>
        <title>554b3529fe018e74cb5d0d0f476ee793b58b030a - thermal/drivers/core: Remove the module Kconfig&apos;s option</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#554b3529fe018e74cb5d0d0f476ee793b58b030a</link>
        <description>thermal/drivers/core: Remove the module Kconfig&apos;s optionThe module support for the thermal subsystem makes little sense: - some subsystems relying on it are not modules, thus forcing the   framework to be compiled in - it is compiled in for almost every configs, the remaining ones   are a few platforms where I don&apos;t see why we can not switch the thermal   to &apos;y&apos;. The drivers can stay in tristate. - platforms need the thermal to be ready as soon as possible at boot time   in order to mitigateUsually the subsystems framework are compiled-in and the plugs are asmodule.Remove the module option. The removal of the module related dead code willcome after this patch gets in or is acked.Signed-off-by: Daniel Lezcano &lt;daniel.lezcano@linaro.org&gt;Acked-by: Guenter Roeck &lt;groeck@chromium.org&gt;For mini2440:Acked-by: Krzysztof Kozlowski &lt;krzk@kernel.org&gt;Acked-by: Paul Burton &lt;paul.burton@mips.com&gt; # MIPS partAcked-by: Robert Jarzmik &lt;robert.jarzmik@free.fr&gt;Signed-off-by: Zhang Rui &lt;rui.zhang@intel.com&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Tue, 02 Apr 2019 18:12:44 +0200</pubDate>
        <dc:creator>Daniel Lezcano &lt;daniel.lezcano@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>af84c0030b298e307889554439b73593968132e2 - MIPS: Regenerate defconfigs</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#af84c0030b298e307889554439b73593968132e2</link>
        <description>MIPS: Regenerate defconfigsA couple of patches have come up recently to remove particular instancesof obsolete Kconfig symbols from defconfigs. Rather than doing thispiecemeal, simply regenerate them all.Signed-off-by: Paul Burton &lt;paul.burton@mips.com&gt;References: https://patchwork.linux-mips.org/patch/19635/References: https://patchwork.linux-mips.org/patch/21156/Patchwork: https://patchwork.linux-mips.org/patch/21184/Cc: Anders Roxell &lt;anders.roxell@linaro.org&gt;Cc: Krzysztof Kozlowski &lt;krzk@kernel.org&gt;Cc: linux-mips@linux-mips.org

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Wed, 21 Nov 2018 01:58:31 +0100</pubDate>
        <dc:creator>Paul Burton &lt;paul.burton@mips.com&gt;</dc:creator>
    </item>
<item>
        <title>d41e6858ba58c039fe84a4f341c1088c475b2537 - MIPS: Kconfig: Set default MIPS system type as generic</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#d41e6858ba58c039fe84a4f341c1088c475b2537</link>
        <description>MIPS: Kconfig: Set default MIPS system type as genericThe generic MIPS system type allows building a board agnostic kernel andshould be the default starting point for users, so set it as the defaultsystem type in Kconfig.Since ip22 is no longer the default, update ip22_defconfig to selectCONFIG_SGI_IP22.Signed-off-by: Matt Redfearn &lt;matt.redfearn@imgtec.com&gt;Cc: Ralf Baechle &lt;ralf@linux-mips.org&gt;Cc: David Howells &lt;dhowells@redhat.com&gt;Cc: Borislav Petkov &lt;bp@suse.de&gt;Cc: linux-mips@linux-mips.orgPatchwork: https://patchwork.linux-mips.org/patch/14714/Signed-off-by: James Hogan &lt;jhogan@kernel.org&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Wed, 14 Dec 2016 16:09:42 +0100</pubDate>
        <dc:creator>Matt Redfearn &lt;matt.redfearn@imgtec.com&gt;</dc:creator>
    </item>
<item>
        <title>59baa24d8710add3689124fb2a232bac2decae9a - MIPS: defconfig: Cleanup from old Kconfig options</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#59baa24d8710add3689124fb2a232bac2decae9a</link>
        <description>MIPS: defconfig: Cleanup from old Kconfig optionsRemove old, dead Kconfig options (in order appearing in this commit): - EXPERIMENTAL is gone since v3.9; - INET_LRO: commit 7bbf3cae65b6 (&quot;ipv4: Remove inet_lro library&quot;); - MTD_CONCAT: commit f53fdebcc3e1 (&quot;mtd: drop MTD_CONCAT from Kconfig   entirely&quot;); - MTD_CHAR: commit 660685d9d1b4 (&quot;mtd: merge mtdchar module with   mtdcore&quot;); - NETDEV_1000 and NETDEV_10000: commit f860b0522f65 (&quot;drivers/net:   Kconfig and Makefile cleanup&quot;); NET_ETHERNET should be replaced with   just ETHERNET but that is separate change; - MISC_DEVICES: commit 7c5763b8453a (&quot;drivers: misc: Remove   MISC_DEVICES config option&quot;); - HID_SUPPORT: commit 1f41a6a99476 (&quot;HID: Fix the generic Kconfig   options&quot;); - BT_L2CAP and BT_SCO: commit f1e91e1640d8 (&quot;Bluetooth: Always compile   SCO and L2CAP in Bluetooth Core&quot;); - DEBUG_ERRORS: commit b025a3f836d1 (&quot;ARM: 6876/1: Kconfig.debug:   Remove unused CONFIG_DEBUG_ERRORS&quot;); - USB_DEVICE_CLASS: commit 007bab91324e (&quot;USB: remove   CONFIG_USB_DEVICE_CLASS&quot;); - RCU_CPU_STALL_DETECTOR: commit a00e0d714fbd (&quot;rcu: Remove conditional   compilation for RCU CPU stall warnings&quot;); - IP_NF_QUEUE: commit 3dd6664fac7e (&quot;netfilter: remove unused &quot;config   IP_NF_QUEUE&quot;&quot;); - IP_NF_TARGET_ULOG: commit d4da843e6fad (&quot;netfilter: kill remnants of   ulog targets&quot;); - IP6_NF_QUEUE: commit d16cf20e2f2f (&quot;netfilter: remove ip_queue   support&quot;); - IP6_NF_TARGET_LOG: commit 6939c33a757b (&quot;netfilter: merge ipt_LOG and   ip6_LOG into xt_LOG&quot;); - USB_LED: commit a335aaf3125c (&quot;usb: misc: remove outdated USB LED   driver&quot;); - MMC_UNSAFE_RESUME: commit 2501c9179dff (&quot;mmc: core: Use   MMC_UNSAFE_RESUME as default behavior&quot;); - AUTOFS_FS: commit 561c5cf9236a (&quot;staging: Remove autofs3&quot;); - VIDEO_OUTPUT_CONTROL: commit f167a64e9d67 (&quot;video / output: Drop   display output class support&quot;); - USB_LIBUSUAL: commit f61870ee6f8c (&quot;usb: remove libusual&quot;); - CRYPTO_ZLIB: 110492183c4b (&quot;crypto: compress - remove unused pcomp   interface&quot;); - BLK_DEV_UB: commit 68a5059ecf82 (&quot;block: remove the deprecated ub   driver&quot;);Signed-off-by: Krzysztof Kozlowski &lt;krzk@kernel.org&gt;Cc: Arnd Bergmann &lt;arnd@arndb.de&gt;Cc: Florian Fainelli &lt;f.fainelli@gmail.com&gt;Cc: linux-kernel@vger.kernel.orgCc: bcm-kernel-feedback-list@broadcom.comCc: linux-mips@linux-mips.orgCc: linux-arm-kernel@lists.infradead.orgPatchwork: https://patchwork.linux-mips.org/patch/16342/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Thu, 08 Jun 2017 18:10:13 +0200</pubDate>
        <dc:creator>Krzysztof Kozlowski &lt;krzk@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>9ddc16ad8e0bc7742fc96d5aaabc5b8698512cd1 - MIPS: Update defconfigs for NF_CT_PROTO_DCCP/UDPLITE change</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/configs/ip22_defconfig#9ddc16ad8e0bc7742fc96d5aaabc5b8698512cd1</link>
        <description>MIPS: Update defconfigs for NF_CT_PROTO_DCCP/UDPLITE changeIn linux-4.10-rc, NF_CT_PROTO_UDPLITE and NF_CT_PROTO_DCCP are boolsymbols instead of tristate, and kernelci.org reports a bunch ofwarnings for this, like:arch/mips/configs/malta_kvm_guest_defconfig:63:warning: symbol value &apos;m&apos; invalid for NF_CT_PROTO_UDPLITEarch/mips/configs/malta_defconfig:62:warning: symbol value &apos;m&apos; invalid for NF_CT_PROTO_DCCParch/mips/configs/malta_defconfig:63:warning: symbol value &apos;m&apos; invalid for NF_CT_PROTO_UDPLITEarch/mips/configs/ip22_defconfig:70:warning: symbol value &apos;m&apos; invalid for NF_CT_PROTO_DCCParch/mips/configs/ip22_defconfig:71:warning: symbol value &apos;m&apos; invalid for NF_CT_PROTO_UDPLITEThis changes all the MIPS defconfigs with these symbols to have thembuilt-in.Fixes: 9b91c96c5d1f (&quot;netfilter: conntrack: built-in support for UDPlite&quot;)Fixes: c51d39010a1b (&quot;netfilter: conntrack: built-in support for DCCP&quot;)Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Cc: linux-mips@linux-mips.orgCc: linux-kernel@vger.kernel.orgPatchwork: https://patchwork.linux-mips.org/patch/14999/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux/arch/mips/configs/ip22_defconfig</description>
        <pubDate>Wed, 11 Jan 2017 15:29:48 +0100</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
</channel>
</rss>
