<?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>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/x86/platform/olpc/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/x86/platform/olpc/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>a0f30f59 - x86, olpc: Add XO-1.5 SCI driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/x86/platform/olpc/Makefile#a0f30f59</link>
        <description>x86, olpc: Add XO-1.5 SCI driverAdd a driver for the ACPI-based EC event interface found on theOLPC XO-1.5 laptop. This enables notification of battery/AC power events,and enables various devices to be used as wakeup sources through regularACPI mechanisms.This driver can&apos;t be built as a module, because some drivers need to knowat boot-time if SCI-based functionality is available viaolpc_ec_wakeup_available().Signed-off-by: Daniel Drake &lt;dsd@laptop.org&gt;Link: http://lkml.kernel.org/r/1309019658-1712-12-git-send-email-dsd@laptop.orgAcked-by: Andres Salomon &lt;dilinger@queued.net&gt;Signed-off-by: H. Peter Anvin &lt;hpa@linux.intel.com&gt;

            List of files:
            /linux-6.15/arch/x86/platform/olpc/Makefile</description>
        <pubDate>Sat, 25 Jun 2011 16:34:18 +0000</pubDate>
        <dc:creator>Daniel Drake &lt;dsd@laptop.org&gt;</dc:creator>
    </item>
<item>
        <title>cfee9597 - x86, olpc: Add XO-1 RTC driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/x86/platform/olpc/Makefile#cfee9597</link>
        <description>x86, olpc: Add XO-1 RTC driverAdd a driver to configure the XO-1 RTC via CS5536 MSRs, to be used as asystem wakeup source via olpc-xo1-pm.Device detection is based on finding the relevant device tree node.Signed-off-by: Daniel Drake &lt;dsd@laptop.org&gt;Link: http://lkml.kernel.org/r/1309019658-1712-11-git-send-email-dsd@laptop.orgAcked-by: Andres Salomon &lt;dilinger@queued.net&gt;Acked-by: Grant Likely &lt;grant.likely@secretlab.ca&gt;Reviewed-by: Sebastian Andrzej Siewior &lt;bigeasy@linutronix.de&gt;Cc: devicetree-discuss@lists.ozlabs.orgSigned-off-by: H. Peter Anvin &lt;hpa@linux.intel.com&gt;

            List of files:
            /linux-6.15/arch/x86/platform/olpc/Makefile</description>
        <pubDate>Sat, 25 Jun 2011 16:34:17 +0000</pubDate>
        <dc:creator>Daniel Drake &lt;dsd@laptop.org&gt;</dc:creator>
    </item>
<item>
        <title>7feda8e9 - x86, olpc: Add XO-1 SCI driver and power button control</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/x86/platform/olpc/Makefile#7feda8e9</link>
        <description>x86, olpc: Add XO-1 SCI driver and power button controlThe System Control Interrupt is used in the OLPC XO-1 to control variousfeatures of the laptop. Add the driver base and the power buttonfunctionality.This driver can&apos;t be built as a module, because functionality added infuture patches means that some drivers need to know at boot-time whetherSCI-based functionality is available.Signed-off-by: Daniel Drake &lt;dsd@laptop.org&gt;Link: http://lkml.kernel.org/r/1309019658-1712-6-git-send-email-dsd@laptop.orgAcked-by: Andres Salomon &lt;dilinger@queued.net&gt;Signed-off-by: H. Peter Anvin &lt;hpa@linux.intel.com&gt;

            List of files:
            /linux-6.15/arch/x86/platform/olpc/Makefile</description>
        <pubDate>Sat, 25 Jun 2011 16:34:12 +0000</pubDate>
        <dc:creator>Daniel Drake &lt;dsd@laptop.org&gt;</dc:creator>
    </item>
<item>
        <title>97c4cb71 - x86, olpc: Add XO-1 suspend/resume support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/x86/platform/olpc/Makefile#97c4cb71</link>
        <description>x86, olpc: Add XO-1 suspend/resume supportAdd code needed for basic suspend/resume of the XO-1 laptop.Based on earlier work by Jordan Crouse, Andres Salomon, and others.This patch incorporates all earlier feedback from Thomas Gleixner. Toclarify a certain point (now more obvious in the code itself):On resume, OpenFirmware returns execution to Linux in protected modewith a kernel-compatible GDT already set up. The changes andsimplifications suggested have all been included.Signed-off-by: Daniel Drake &lt;dsd@laptop.org&gt;Link: http://lkml.kernel.org/r/1309019658-1712-5-git-send-email-dsd@laptop.orgAcked-by: Andres Salomon &lt;dilinger@queued.net&gt;Signed-off-by: H. Peter Anvin &lt;hpa@linux.intel.com&gt;

            List of files:
            /linux-6.15/arch/x86/platform/olpc/Makefile</description>
        <pubDate>Sat, 25 Jun 2011 16:34:11 +0000</pubDate>
        <dc:creator>Daniel Drake &lt;dsd@laptop.org&gt;</dc:creator>
    </item>
<item>
        <title>a3128588 - x86, olpc: Rename olpc-xo1 to olpc-xo1-pm</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/x86/platform/olpc/Makefile#a3128588</link>
        <description>x86, olpc: Rename olpc-xo1 to olpc-xo1-pmBased on earlier review comments, we&apos;ll no longer try to stick all ofour XO-1 goodies in a single driver. We&apos;ll split it into a power managementdriver, and an EC/SCI driver.As a first step, rename olpc-xo1 to olpc-xo1-pm, and make it builtininstead of modular.Signed-off-by: Daniel Drake &lt;dsd@laptop.org&gt;Link: http://lkml.kernel.org/r/1309019658-1712-4-git-send-email-dsd@laptop.orgAcked-by: Andres Salomon &lt;dilinger@queued.net&gt;Signed-off-by: H. Peter Anvin &lt;hpa@linux.intel.com&gt;

            List of files:
            /linux-6.15/arch/x86/platform/olpc/Makefile</description>
        <pubDate>Sat, 25 Jun 2011 16:34:10 +0000</pubDate>
        <dc:creator>Daniel Drake &lt;dsd@laptop.org&gt;</dc:creator>
    </item>
<item>
        <title>45bb1674 - x86, olpc: Use device tree for platform identification</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/x86/platform/olpc/Makefile#45bb1674</link>
        <description>x86, olpc: Use device tree for platform identificationMake OLPC fully depend on device tree, and use it to identify the OLPCplatform details. Some nodes are exposed as platform devices where weplan to use device tree for device probing.Signed-off-by: Daniel Drake &lt;dsd@laptop.org&gt;Acked-by: Grant Likely &lt;grant.likely@secretlab.ca&gt;LKML-Reference: &lt;20110313151017.C255F9D401E@zog.reactivated.net&gt;Signed-off-by: H. Peter Anvin &lt;hpa@linux.intel.com&gt;

            List of files:
            /linux-6.15/arch/x86/platform/olpc/Makefile</description>
        <pubDate>Sun, 13 Mar 2011 15:10:17 +0000</pubDate>
        <dc:creator>Daniel Drake &lt;dsd@laptop.org&gt;</dc:creator>
    </item>
<item>
        <title>c2a941fa - x86: OLPC: Remove extra OLPC_OPENFIRMWARE_DT indirection</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/x86/platform/olpc/Makefile#c2a941fa</link>
        <description>x86: OLPC: Remove extra OLPC_OPENFIRMWARE_DT indirectionOLPC_OPENFIRMWARE_DT is just there to be selected by OLPC and selectsOF_PROMTREE. So let OLPC select OF_PROMTREE and remove that extraconfig indirection. Fixup code and Makefile and use CONFIG_OF_PROMTREEinstead.Signed-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Cc: Andres Salomon &lt;dilinger@queued.net&gt;

            List of files:
            /linux-6.15/arch/x86/platform/olpc/Makefile</description>
        <pubDate>Wed, 23 Feb 2011 09:32:42 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>dc3119e7 - x86: OLPC: Cleanup config maze completely</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/x86/platform/olpc/Makefile#dc3119e7</link>
        <description>x86: OLPC: Cleanup config maze completelyNeither CONFIG_OLPC_OPENFIRMWARE nor CONFIG_OLPC_OPENFIRMWARE_DT arereally necessary.OLPC selects OLPC_OPENFIRMWARE unconditionally, so move the &quot;selectOF&quot; part under OLPC config option and fixup the dependencies inMakefiles and code.Signed-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Cc: Andres Salomon &lt;dilinger@queued.net&gt;

            List of files:
            /linux-6.15/arch/x86/platform/olpc/Makefile</description>
        <pubDate>Wed, 23 Feb 2011 09:08:31 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>c10d1e26 - x86, olpc: Add OLPC device-tree support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/x86/platform/olpc/Makefile#c10d1e26</link>
        <description>x86, olpc: Add OLPC device-tree supportMake use of PROC_DEVICETREE to export the tree, and sparc&apos;s PROMTREE code tocall into OLPC&apos;s Open Firmware to build the tree.v5: fix buglet with root node check (introduced in v4)v4: address some minor style issues pointed out by Grant, and explicitly cast    negative phandle checks to s32.v3: rename olpc_prom to olpc_dt  - rework Kconfig entries  - drop devtree build hook from proc, instead adding a call to x86&apos;s    paging_init (similarly to how sparc64 does it)  - switch allocation from using slab to alloc_bootmem.  this allows    the DT to be built earlier during boot (during setup_arch); the    downside is that there are some 1200 bootmem reservations that are    done during boot.  Not ideal..  - add a helper olpc_ofw_is_installed function to test for the    existence and successful detection of OLPC&apos;s OFW.Signed-off-by: Andres Salomon &lt;dilinger@queued.net&gt;LKML-Reference: &lt;20101116220952.26526a80@queued.net&gt;Signed-off-by: H. Peter Anvin &lt;hpa@linux.intel.com&gt;

            List of files:
            /linux-6.15/arch/x86/platform/olpc/Makefile</description>
        <pubDate>Wed, 17 Nov 2010 06:09:52 +0000</pubDate>
        <dc:creator>Andres Salomon &lt;dilinger@queued.net&gt;</dc:creator>
    </item>
<item>
        <title>8654b1c2 - x86: Move olpc to platform</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/x86/platform/olpc/Makefile#8654b1c2</link>
        <description>x86: Move olpc to platformSigned-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Cc: Andres Salomon &lt;dilinger@queued.net&gt;

            List of files:
            /linux-6.15/arch/x86/platform/olpc/Makefile</description>
        <pubDate>Sat, 23 Oct 2010 09:28:42 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
</channel>
</rss>
