<?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>3ca64d06 - sh: Remove stale microdev board</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#3ca64d06</link>
        <description>sh: Remove stale microdev boardThis board was an early prototype platform for early SH4 CPUs and relatedto the already removed SH5 cayman platform.The microdev board itself has been kept in the tree for this long despitebeing in a bad shape even 20 years ago when it got merged, with no workingPCI support and ugly workarounds for its I/O port implementation thattry to emulate PC style peripheral access despite being quite differentin reality.As far as I can tell, the ethernet, display, USB and PCI devices on italready broke at some point (afbb9d8d5266b, 46bc85872040a), so I thinkwe can just removeit entirely.Link: https://lore.kernel.org/lkml/09094baf-dadf-4bce-9f63-f2a1f255f9a8@app.fastmail.com/Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Reviewed-by: John Paul Adrian Glaubitz &lt;glaubitz@physik.fu-berlin.de&gt;Link: https://lore.kernel.org/r/20230914155523.3839811-1-arnd@kernel.orgSigned-off-by: John Paul Adrian Glaubitz &lt;glaubitz@physik.fu-berlin.de&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Thu, 14 Sep 2023 15:55:20 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>706afcea - sh: Fix -Wmissing-include-dirs warnings for various platforms</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#706afcea</link>
        <description>sh: Fix -Wmissing-include-dirs warnings for various platformsThe 0day bot reports a lot of warnings (or errors due to CONFIG_WERROR)like this:  cc1: error: arch/sh/include/mach-hp6xx: No such file or directory [-Werror=missing-include-dirs]Indeed, arch/sh/include/mach-hp6xx does not exist.While -Wmissing-include-dirs is only a W=1 warning, it may beannoying when CONFIG_BTRFS_FS is enabled because fs/btrfs/Makefileunconditionally adds this warning option.arch/sh/Makefile defines machdir-y for two purposes: - Build platform code in arch/sh/boards/mach-*/ - Add arch/sh/include/mach-*/ to the header search pathFor the latter, some platforms use arch/sh/include/mach-common/instead of having its own arch/sh/include/mach-*/.Drop unneeded machdir-y to omit non-existing include directories.To build arch/sh/boards/mach-*/, use the standard obj-y syntax inarch/sh/boards/Makefile.Reported-by: kernel test robot &lt;lkp@intel.com&gt;Link: https://lore.kernel.org/oe-kbuild-all/202302190641.30VVXnPb-lkp@intel.com/Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Acked-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Tested-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Reviewed-by: John Paul Adrian Glaubitz &lt;glaubitz@physik.fu-berlin.de&gt;Link: https://lore.kernel.org/r/20230219141555.2308306-1-masahiroy@kernel.orgSigned-off-by: John Paul Adrian Glaubitz &lt;glaubitz@physik.fu-berlin.de&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Sun, 19 Feb 2023 14:15:52 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&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/sh/boards/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/sh/boards/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>7480e0aa - sh: add device tree support and generic board using device tree</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#7480e0aa</link>
        <description>sh: add device tree support and generic board using device treeAdd a new pseudo-board, within the existing SH boards/machine-vectorsframework, which does not represent any actual hardware but insteadrequires all hardware to be described by the device tree blob providedby the boot loader. Changes made are thus non-invasive and do not riskbreaking support for legacy boards.New hardware, including the open-hardware J2 and associated SoCdevices, will use device free from the outset. Legacy SH boards cantransition to device tree once all their hardware has device treebindings, driver support for device tree, and a dts file for theboard.It is intented that, once all boards are supported in the newframework, the existing machine-vectors framework should be removedand the new device tree setup code integrated directly.Signed-off-by: Rich Felker &lt;dalias@libc.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Sat, 23 Jan 2016 00:45:41 +0000</pubDate>
        <dc:creator>Rich Felker &lt;dalias@libc.org&gt;</dc:creator>
    </item>
<item>
        <title>8a453cac - sh: Add support for AP-SH4AD-0A board.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#8a453cac</link>
        <description>sh: Add support for AP-SH4AD-0A board.This adds preliminary support for the alpha project AP-SH4AD-0A referenceplatform (SH7786 based).Additional platform information available at:	http://www.apnet.co.jp/product/superh/ap-sh4ad-0a.htmlSigned-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Thu, 13 Jan 2011 09:36:21 +0000</pubDate>
        <dc:creator>Paul Mundt &lt;lethal@linux-sh.org&gt;</dc:creator>
    </item>
<item>
        <title>bc34b085 - sh: Add support for AP-SH4A-3A board.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#bc34b085</link>
        <description>sh: Add support for AP-SH4A-3A board.This adds preliminary support for the alpha project AP-SH4A-3A referenceplatform (SH7785 based).Additional paltform information available at:	http://www.apnet.co.jp/product/superh/ap-sh4a-3a.htmlSigned-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Thu, 13 Jan 2011 09:32:42 +0000</pubDate>
        <dc:creator>Paul Mundt &lt;lethal@linux-sh.org&gt;</dc:creator>
    </item>
<item>
        <title>c819cc73 - sh: mach-edosk7705: Kill off machtype, consolidate board def.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#c819cc73</link>
        <description>sh: mach-edosk7705: Kill off machtype, consolidate board def.Trivial shuffling and tidying.Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Fri, 29 Oct 2010 10:38:19 +0000</pubDate>
        <dc:creator>Paul Mundt &lt;lethal@linux-sh.org&gt;</dc:creator>
    </item>
<item>
        <title>f6eec8d6 - sh: mach-snapgear: Kill off machtype, consolidate board def.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#f6eec8d6</link>
        <description>sh: mach-snapgear: Kill off machtype, consolidate board def.Only the secureedge5410 was ever supported by this code, so make theboard specification explicit rather than perpetuating a mach group.Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Fri, 29 Oct 2010 10:06:53 +0000</pubDate>
        <dc:creator>Paul Mundt &lt;lethal@linux-sh.org&gt;</dc:creator>
    </item>
<item>
        <title>36239c67 - sh: add sh7757lcr board support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#36239c67</link>
        <description>sh: add sh7757lcr board supportThis adds preliminary support for the sh7757lcr board.Signed-off-by: Yoshihiro Shimoda &lt;yoshihiro.shimoda.uh@renesas.com&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Tue, 06 Jul 2010 04:32:16 +0000</pubDate>
        <dc:creator>Yoshihiro Shimoda &lt;yoshihiro.shimoda.uh@renesas.com&gt;</dc:creator>
    </item>
<item>
        <title>3a598264 - sh: SH-2007 board support.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#3a598264</link>
        <description>sh: SH-2007 board support.This patch series adds support for ITO Co., Ltd.&apos;s SH-2007 referenceplatform (A PC-104 based SH7780 platform).This is a direct port of the out-of-tree board support from the vendor&apos;skernel, originally located at:	http://ms-n.org/sh-linux/kernel/More information on the board and the vendor can be obtained from thevendor&apos;s site at:	http://www.itonet.co.jp/Presently supported peripherals are CF and ethernet, with support forthe on-board IDE still pending further testing.Reviewed-by: Nobuhiro Iwamatsu &lt;iwamatsu@nigauri.org&gt;Reviewed-by: Magnus Damm &lt;magnus.damm@gmail.com&gt;Signed-off-by: Hitoshi Mitake &lt;mitake@dcl.info.waseda.ac.jp&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Mon, 21 Jun 2010 06:10:51 +0000</pubDate>
        <dc:creator>Hitoshi Mitake &lt;mitake@dcl.info.waseda.ac.jp&gt;</dc:creator>
    </item>
<item>
        <title>f655f5e9 - sh: mach-titan: Kill off unused PIO port mangling.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#f655f5e9</link>
        <description>sh: mach-titan: Kill off unused PIO port mangling.Nothing is using this, kill it off. Fixing up access sizes can be donewith trapped I/O for anyone wanting to make use of this for devices thatneed it, everything else is already pure MMIO.Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Thu, 28 Jan 2010 06:08:21 +0000</pubDate>
        <dc:creator>Paul Mundt &lt;lethal@linux-sh.org&gt;</dc:creator>
    </item>
<item>
        <title>53528928 - sh: Move ap325rxa board code into separate directory</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#53528928</link>
        <description>sh: Move ap325rxa board code into separate directoryMove the AP325RXA board code from a single board fileto a separate directory. This to make it easy to addsupport for sdram sleep mode code.Signed-off-by: Magnus Damm &lt;damm@opensource.se&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Fri, 30 Oct 2009 04:23:42 +0000</pubDate>
        <dc:creator>Magnus Damm &lt;damm@opensource.se&gt;</dc:creator>
    </item>
<item>
        <title>eaeed5d3 - sh: add support for SMSC Polaris platform</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#eaeed5d3</link>
        <description>sh: add support for SMSC Polaris platformPolaris is an SMSC reference platform with a SH7709S CPU and LAN9118ethernet controller.  This patch adds support for it.Updated following feedback from Nobuhiro Iwamatsu.Signed-off-by: Steve Glendinning &lt;steve.glendinning@smsc.com&gt;Reviewed-by: Nobuhiro Iwamatsu &lt;iwamatsu.nobuhiro@renesas.com&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Fri, 20 Mar 2009 14:16:29 +0000</pubDate>
        <dc:creator>Steve Glendinning &lt;steve.glendinning@smsc.com&gt;</dc:creator>
    </item>
<item>
        <title>32910e2c - sh: espt-giga board support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#32910e2c</link>
        <description>sh: espt-giga board supportThis adds support for the ESPT-Giga (Ethernet Serial ParallelTranslator) SH7763-based reference board.Board support is relatively sparse, presently supporting serial,gigabit ethernet, USB host, and MTD.More information (in Japanese) available at:	http://www.cente.jp/product/cente_hard/ESPT-Giga.htmlSigned-off-by: Nobuhiro Iwamatsu &lt;iwamatsu.nobuhiro@renesas.com&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Tue, 17 Mar 2009 05:54:37 +0000</pubDate>
        <dc:creator>Nobuhiro Iwamatsu &lt;iwamatsu.nobuhiro@renesas.com&gt;</dc:creator>
    </item>
<item>
        <title>5ac072e1 - sh: Urquell board support.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#5ac072e1</link>
        <description>sh: Urquell board support.This adds preliminary support for the SH7786-based Urquell board.Signed-off-by: Kuninori Morimoto &lt;morimoto.kuninori@renesas.com&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Tue, 03 Mar 2009 07:22:00 +0000</pubDate>
        <dc:creator>Kuninori Morimoto &lt;morimoto.kuninori@renesas.com&gt;</dc:creator>
    </item>
<item>
        <title>ea0aac1e - sh: Consolidate rsk7203/7201 in to a new mach-rsk.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#ea0aac1e</link>
        <description>sh: Consolidate rsk7203/7201 in to a new mach-rsk.RSK+ platforms have quite a few characteristics in common, so roll themtogether in to a shiny new RSK mach-type.Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Mon, 08 Dec 2008 05:32:03 +0000</pubDate>
        <dc:creator>Paul Mundt &lt;lethal@linux-sh.org&gt;</dc:creator>
    </item>
<item>
        <title>6feb3487 - sh: RSK+ 7201 board support.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#6feb3487</link>
        <description>sh: RSK+ 7201 board support.This patch adds support for the RTE RSK+ 7201 board.Signed-off-by: Peter Griffin &lt;pgriffin@mpc-data.co.uk&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Fri, 28 Nov 2008 13:56:45 +0000</pubDate>
        <dc:creator>Peter Griffin &lt;pgriffin@mpc-data.co.uk&gt;</dc:creator>
    </item>
<item>
        <title>3db91708 - sh: Add Renesas EDOSK7760 board support.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#3db91708</link>
        <description>sh: Add Renesas EDOSK7760 board support.This adds support for the Renesas (RTE) EDOSK7760 board. Currentlysupported devices are:	 - ramdisk support	 - ethernet support	 - nfs support	 - ext2/ext3 support	 - i2c support	 - fb support (M)Signed-off-by: Luca Santini &lt;luca.santini@spesonline.com&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Mon, 08 Sep 2008 03:01:15 +0000</pubDate>
        <dc:creator>Luca Santini &lt;luca.santini@spesonline.com&gt;</dc:creator>
    </item>
<item>
        <title>596400f0 - sh/boards/Makefile typo fix</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#596400f0</link>
        <description>sh/boards/Makefile typo fixThe following build error was caused by an obvious typo:&lt;--  snip  --&gt;...  LD      arch/sh/mm/built-in.omake[2]: *** No rule to make target `arch/sh/boards/board-shmin..o&apos;, needed by `arch/sh/boards/built-in.o&apos;.  Stop.&lt;--  snip  --&gt;Reported-by: Adrian Bunk &lt;bunk@kernel.org&gt;Signed-off-by: Adrian Bunk &lt;bunk@kernel.org&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Sat, 02 Aug 2008 16:53:44 +0000</pubDate>
        <dc:creator>Adrian Bunk &lt;bunk@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c8b5d9dc - sh: Move out individual boards without mach groups.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/sh/boards/Makefile#c8b5d9dc</link>
        <description>sh: Move out individual boards without mach groups.Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/arch/sh/boards/Makefile</description>
        <pubDate>Tue, 29 Jul 2008 15:13:39 +0000</pubDate>
        <dc:creator>Paul Mundt &lt;lethal@linux-sh.org&gt;</dc:creator>
    </item>
</channel>
</rss>
