<?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>d5d1a1a5 - powerpc/platforms: Move files from 4xx to 44x</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#d5d1a1a5</link>
        <description>powerpc/platforms: Move files from 4xx to 44xOnly 44x uses 4xx now, so only keep one directory.Signed-off-by: Christophe Leroy &lt;christophe.leroy@csgroup.eu&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://msgid.link/20240628121201.130802-7-mpe@ellerman.id.au

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Fri, 28 Jun 2024 12:12:01 +0000</pubDate>
        <dc:creator>Christophe Leroy &lt;christophe.leroy@csgroup.eu&gt;</dc:creator>
    </item>
<item>
        <title>7ade8495 - powerpc: Remove Xilinx PPC405/PPC440 support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#7ade8495</link>
        <description>powerpc: Remove Xilinx PPC405/PPC440 supportThe latest Xilinx design tools called ISE and EDK has been released inOctober 2013. New tool doesn&apos;t support any PPC405/PPC440 new designs.These platforms are no longer supported and tested.PowerPC 405/440 port is orphan from 2013 bycommit cdeb89943bfc (&quot;MAINTAINERS: Fix incorrect status tag&quot;) andcommit 19624236cce1 (&quot;MAINTAINERS: Update Grant&apos;s email address and maintainership&quot;)that&apos;s why it is time to remove the support fot these platforms.Signed-off-by: Michal Simek &lt;michal.simek@xilinx.com&gt;Signed-off-by: Christophe Leroy &lt;christophe.leroy@csgroup.eu&gt;Acked-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://lore.kernel.org/r/8c593895e2cb57d232d85ce4d8c3a1aa7f0869cc.1590079968.git.christophe.leroy@csgroup.eu

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Thu, 21 May 2020 16:55:52 +0000</pubDate>
        <dc:creator>Michal Simek &lt;michal.simek@xilinx.com&gt;</dc:creator>
    </item>
<item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>5b4e2857 - powerpc/44x: Move 44x machine check handlers into platforms/44x</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#5b4e2857</link>
        <description>powerpc/44x: Move 44x machine check handlers into platforms/44xWe have several 44x machine check handlers defined in traps.c. It wouldbe preferable if they were split out with the platforms that use them.Do that.In the process, drop get_mc_reason() and instead just open code thelookup of reason from regs-&gt;dsisr. This avoids a pointless layer ofabstraction.We know to use regs-&gt;dsisr because 44x enables BOOKE which enablesPPC_ADV_DEBUG_REGS, and FSL_BOOKE is not enabled on 44x builds.Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Tue, 08 Aug 2017 06:39:19 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>8ab8fc68 - powerpc/44x: Simplify CONFIG_44x checks in Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#8ab8fc68</link>
        <description>powerpc/44x: Simplify CONFIG_44x checks in MakefileThe entire 44x directory is omitted if CONFIG_44x is not enabled, sowithin the 44x/Makefile CONFIG_44x is always y. So convertobj-$(CONFIG_44x) to the more obvious obj-y.Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Tue, 08 Aug 2017 06:39:18 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>c4b56b02 - powerpc/44x/fsp2: Platform support for FSP2 (476fpe) board</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#c4b56b02</link>
        <description>powerpc/44x/fsp2: Platform support for FSP2 (476fpe) boardAdd platform code support for FSP2 (476fpe) board.Signed-off-by: Ivan Mikhaylov &lt;ivan@de.ibm.com&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Mon, 15 May 2017 13:07:51 +0000</pubDate>
        <dc:creator>Ivan Mikhaylov &lt;ivan@de.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>2a2c74b2 - IBM Akebono: Add the Akebono platform</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#2a2c74b2</link>
        <description>IBM Akebono: Add the Akebono platformThis patch adds support for the IBM Akebono board.Signed-off-by: Alistair Popple &lt;alistair@popple.id.au&gt;Signed-off-by: Benjamin Herrenschmidt &lt;benh@kernel.crashing.org&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Thu, 06 Mar 2014 03:52:27 +0000</pubDate>
        <dc:creator>Alistair Popple &lt;alistair@popple.id.au&gt;</dc:creator>
    </item>
<item>
        <title>6b11930f - IBM Currituck: Clean up board specific code before adding Akebono code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#6b11930f</link>
        <description>IBM Currituck: Clean up board specific code before adding Akebono codeThe IBM Akebono code uses the same initialisation functions as theearlier Currituck board. Rather than create a copy of this code forAkebono we will instead integrate support for it into the same file asthe Currituck code.This patch just renames the board support file and updates the Makefile.Signed-off-by: Alistair Popple &lt;alistair@popple.id.au&gt;Signed-off-by: Benjamin Herrenschmidt &lt;benh@kernel.crashing.org&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Thu, 06 Mar 2014 03:52:26 +0000</pubDate>
        <dc:creator>Alistair Popple &lt;alistair@popple.id.au&gt;</dc:creator>
    </item>
<item>
        <title>228d5505 - powerpc/47x: Add support for the new IBM currituck platform</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#228d5505</link>
        <description>powerpc/47x: Add support for the new IBM currituck platformBased on original work by David &apos;Shaggy&apos; Kleikamp.Signed-off-by: Tony Breeds &lt;tony@bakeyournoodle.com&gt;Signed-off-by: Josh Boyer &lt;jwboyer@gmail.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Wed, 30 Nov 2011 21:39:24 +0000</pubDate>
        <dc:creator>Tony Breeds &lt;tony@bakeyournoodle.com&gt;</dc:creator>
    </item>
<item>
        <title>8960f7ff - powerpc/44x: PHY fixup for USB on canyonlands board</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#8960f7ff</link>
        <description>powerpc/44x: PHY fixup for USB on canyonlands boardThis fix is a reset for USB PHY that requires some amount of time for powerto be stable on Canyonlands.Signed-off-by: Rupjyoti Sarmah &lt;rsarmah@apm.com&gt;Signed-off-by: Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Wed, 15 Dec 2010 02:27:10 +0000</pubDate>
        <dc:creator>Rupjyoti Sarmah &lt;rsarmah@amcc.com&gt;</dc:creator>
    </item>
<item>
        <title>d164f6d4 - powerpc/4xx: Add suspend and idle support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#d164f6d4</link>
        <description>powerpc/4xx: Add suspend and idle supportAdd suspend/resume support for 4xx compatible CPUs.See /sys/power/state for available power states configured in.Add two different idle states (idle-wait and idle-doze) controlled via sysfs.Default is idle-wait.	cat /sys/devices/system/cpu/cpu0/idle	[wait] dozeTo save additional power, use idle-doze.	echo doze &gt; /sys/devices/system/cpu/cpu0/idle	cat /sys/devices/system/cpu/cpu0/idle	wait [doze]Signed-off-by: Victor Gallardo &lt;vgallardo@apm.com&gt;Signed-off-by: Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Fri, 08 Oct 2010 10:25:27 +0000</pubDate>
        <dc:creator>Victor Gallardo &lt;vgallardo@apm.com&gt;</dc:creator>
    </item>
<item>
        <title>b4e8c8dd - powerpc/4xx: Simple platform for the ISS 4xx simulator</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#b4e8c8dd</link>
        <description>powerpc/4xx: Simple platform for the ISS 4xx simulatorThis is a trivial 4xx plaform that uses the new simple bsp fromJosh and is handy to use in simulators such as ISS or even Mambowho don&apos;t properly implement most of the actual devices in theSoC but really only the core.Signed-off-by: Torez Smith  &lt;lnxtorez@linux.vnet.ibm.com&gt;Signed-off-by: Dave Kleikamp &lt;shaggy@linux.vnet.ibm.com&gt;Signed-off-by: Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Fri, 05 Mar 2010 10:45:54 +0000</pubDate>
        <dc:creator>Torez Smith &lt;lnxtorez@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>e52ba9c5 - powerpc/virtex: Add Xilinx ML510 reference design support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#e52ba9c5</link>
        <description>powerpc/virtex: Add Xilinx ML510 reference design supportSigned-off-by: Roderick Colenbrander &lt;thunderbird2k@gmail.com&gt;Signed-off-by: Grant Likely &lt;grant.likely@secretlab.ca&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Sat, 06 Jun 2009 16:15:24 +0000</pubDate>
        <dc:creator>Roderick Colenbrander &lt;thunderbird2k@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>e275e023 - powerpc/44x: Warp patches for the new NDFC driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#e275e023</link>
        <description>powerpc/44x: Warp patches for the new NDFC driverConvert the Warp platform to use the newly merged NDFC driver- warp.dts changed to work with ndfc- warp-nand.c no longer needed- removed obsolete rev A support from cuboot-warp.cSigned-off-by: Sean MacLennan &lt;smaclennan@pikatech.com&gt;Signed-off-by: Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Fri, 09 Jan 2009 18:20:11 +0000</pubDate>
        <dc:creator>Sean MacLennan &lt;smaclennan@pikatech.com&gt;</dc:creator>
    </item>
<item>
        <title>4f19a897 - powerpc/44x: Migrate Taishan support to ppc44x_simple</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#4f19a897</link>
        <description>powerpc/44x: Migrate Taishan support to ppc44x_simpleMigrate the AMCC Taishan board to use the ppc44x_simple platform file.Signed-off-by: Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Tue, 19 Aug 2008 15:26:53 +0000</pubDate>
        <dc:creator>Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>427e817d - powerpc/44x: Migrate Sequoia support to ppc44x_simple</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#427e817d</link>
        <description>powerpc/44x: Migrate Sequoia support to ppc44x_simpleMigrate the AMCC Sequoia board to use the ppc44x_simple platform file.Signed-off-by: Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Tue, 19 Aug 2008 15:26:48 +0000</pubDate>
        <dc:creator>Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>5c8495d2 - powerpc/44x: Migrate Rainier support to ppc44x_simple</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#5c8495d2</link>
        <description>powerpc/44x: Migrate Rainier support to ppc44x_simpleMigrate the AMCC Rainier board to use the ppc44x_simple platform file.Signed-off-by: Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Tue, 19 Aug 2008 15:26:44 +0000</pubDate>
        <dc:creator>Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>cfcf81ba - powerpc/44x: Migrate Katmai support to ppc44x_simple</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#cfcf81ba</link>
        <description>powerpc/44x: Migrate Katmai support to ppc44x_simpleMigrate the AMCC Katmai board to use the ppc44x_simple platform file.Signed-off-by: Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Tue, 19 Aug 2008 15:26:40 +0000</pubDate>
        <dc:creator>Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>aaf136c2 - powerpc/44x: Migrate Canyonlands support to ppc44x_simple</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#aaf136c2</link>
        <description>powerpc/44x: Migrate Canyonlands support to ppc44x_simpleMigrate the AMCC Canyonlands board to use the ppc44x_simple platform file.Signed-off-by: Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Tue, 19 Aug 2008 15:26:35 +0000</pubDate>
        <dc:creator>Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>380c313a - powerpc/44x: Migrate Bamboo support to ppc44x_simple</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/platforms/44x/Makefile#380c313a</link>
        <description>powerpc/44x: Migrate Bamboo support to ppc44x_simpleMigrate the AMCC Bamboo board to use the ppc44x_simple platform file.Signed-off-by: Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/platforms/44x/Makefile</description>
        <pubDate>Tue, 19 Aug 2008 15:26:24 +0000</pubDate>
        <dc:creator>Josh Boyer &lt;jwboyer@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
</channel>
</rss>
