<?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>53e85588 - ACPI: tools: Introduce utility for firmware updates/telemetry</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#53e85588</link>
        <description>ACPI: tools: Introduce utility for firmware updates/telemetryIntroduce a user space tool to make use of the interface exposed byPlatform Firmware Runtime Update and Telemetry drivers.It can be used for firmware code injection, driver updates andto retrieve platform firmware telemetry data.Tested-by: Hongyu Ning &lt;hongyu.ning@intel.com&gt;Signed-off-by: Chen Yu &lt;yu.c.chen@intel.com&gt;[ rjw: Subject and changelog edits ]Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Wed, 22 Dec 2021 04:32:34 +0000</pubDate>
        <dc:creator>Chen Yu &lt;yu.c.chen@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>05c36e5a - tools/power/acpi: Serialize Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#05c36e5a</link>
        <description>tools/power/acpi: Serialize MakefileBefore this patch you get tools/power/acpi/Makefile.rulesincluded in parallel trying to copy KERNEL_INCLUDE multipletimes:make -j20 acpi  DESCEND  power/acpi  DESCEND  tools/acpidbg  DESCEND  tools/acpidump  DESCEND  tools/ec  MKDIR    include  MKDIR    include  MKDIR    include  CP       include  CP       includecp: cannot create directory &apos;/home/abuild/rpmbuild/BUILD/linux-5.7.7+git20200917.10b82d517648/tools/power/acpi/include/acpi&apos;: File existsmake[2]: *** [../../Makefile.rules:20: /home/abuild/rpmbuild/BUILD/linux-5.7.7+git20200917.10b82d517648/tools/power/acpi/include] Error 1make[1]: *** [Makefile:16: acpidbg] Error 2make[1]: *** Waiting for unfinished jobs....with this patch each subdirectory will be processed serialized:  DESCEND  power/acpi  DESCEND  tools/acpidbg  MKDIR    include  CP       include  CC       tools/acpidbg/acpidbg.o  LD       acpidbg  STRIP    acpidbg  DESCEND  tools/acpidump  CC       tools/acpidump/apdump.o...  LD       acpidump  STRIP    acpidump  DESCEND  tools/ec  CC       tools/ec/ec_access.o  LD       ec  STRIP    ecSigned-off-by: Thomas Renninger &lt;trenn@suse.de&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Fri, 25 Sep 2020 15:21:04 +0000</pubDate>
        <dc:creator>Thomas Renninger &lt;trenn@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>b886d83c - treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 441</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#b886d83c</link>
        <description>treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 441Based on 1 normalized pattern(s):  this program is free software you can redistribute it and or modify  it under the terms of the gnu general public license as published by  the free software foundation version 2 of the licenseextracted by the scancode license scanner the SPDX license identifier  GPL-2.0-onlyhas been chosen to replace the boilerplate/reference in 315 file(s).Signed-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Reviewed-by: Allison Randal &lt;allison@lohutok.net&gt;Reviewed-by: Armijn Hemel &lt;armijn@tjaldur.nl&gt;Cc: linux-spdx@vger.kernel.orgLink: https://lkml.kernel.org/r/20190531190115.503150771@linutronix.deSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Sat, 01 Jun 2019 08:08:55 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>37645d65 - tools/power/acpi: Add userspace AML interface support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#37645d65</link>
        <description>tools/power/acpi: Add userspace AML interface supportThis patch adds a userspace tool to access Linux kernel AML debuggerinterface.Tow modes are supported by this tool:1. Interactive: Users are able to launch a debugging shell to talk with   in-kernel AML debugger.   Note that it&apos;s user duty to ensure kernel runtime integrity by using   this debugging tool:   A. Some control methods evaluated by the users may result in kernel      panics if those control methods shouldn&apos;t be evaluated by the OSPMs      according to the current BIOS/OS configurations.   B. Currently if a single stepping evaluation couldn&apos;t run to an end,      then the synchronization primitives acquired by the evaluation may      block normal OSPM control method evaluations.2. Batch: Users are able to execute debugger commands in a script.   Note that in addition to the above duties, it&apos;s user duty to ensure   script runtime integrity by using this debugging tool in this mode:   C. Currently only those commands that are not used for single stepping      are suitable to be used in this mode.   D. If the execution of the command may cause a failure that could result      in an endless kernel execution, the execution of the script may also      get blocked.To exit the utility, currently &quot;exit/quit&quot; commands are recommended, butctrl-C&quot; can also be used.Signed-off-by: Lv Zheng &lt;lv.zheng@intel.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Thu, 03 Dec 2015 02:43:07 +0000</pubDate>
        <dc:creator>Lv Zheng &lt;lv.zheng@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>4305cd02 - tools/power/acpi: Enable build for EC userspace tool</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#4305cd02</link>
        <description>tools/power/acpi: Enable build for EC userspace toolThis patch allows EC userspace tool to be built as an ACPI tool.Signed-off-by: Lv Zheng &lt;lv.zheng@intel.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Tue, 28 Jul 2015 05:25:32 +0000</pubDate>
        <dc:creator>Lv Zheng &lt;lv.zheng@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>391fc234 - tools/power/acpi: Add descend support in ACPI tools Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#391fc234</link>
        <description>tools/power/acpi: Add descend support in ACPI tools MakefileThis patch splits tools/power/acpi/Makefile to support descend compling forACPI tools. In this patch tools/ec related stuff is removed as it isoriginally not enabled.Also a missing .o (utnonansi.o) is added to the acpidump/Makefile.Signed-off-by: Lv Zheng &lt;lv.zheng@intel.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Tue, 28 Jul 2015 05:25:25 +0000</pubDate>
        <dc:creator>Lv Zheng &lt;lv.zheng@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>3c9349c9 - ACPICA: Common: Enhance cm_get_file_size() to improve portability</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#3c9349c9</link>
        <description>ACPICA: Common: Enhance cm_get_file_size() to improve portabilityThis patch uses abstract file IO and acpi_log_error() APIs to enhancecm_get_file_size() so that applications that invoke this API could haveportability improved.With actual references added to abstract file IO and acpi_log_error(), theapplications need to link oslibcfs.o, utdebug.o, utexcep.o, utmath.o,utprint.o and utxferror.o.It is also required to add acpi_os_initialize() invocations if anapplication starts to use acpi_log_error().acpidump has already invoked acpi_os_initialize() in this way.  Lv Zheng.Signed-off-by: Lv Zheng &lt;lv.zheng@intel.com&gt;Signed-off-by: Bob Moore &lt;robert.moore@intel.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Tue, 08 Jul 2014 02:07:19 +0000</pubDate>
        <dc:creator>Lv Zheng &lt;lv.zheng@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>83b80bac - ACPICA: OSL: Clean up acpi_os_printf()/acpi_os_vprintf() stubs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#83b80bac</link>
        <description>ACPICA: OSL: Clean up acpi_os_printf()/acpi_os_vprintf() stubsThis patch is mainly for acpidump where there are redundantacpi_os_printf()/acpi_os_vprintf() stubs implemented. This patch cleans up suchspecific implementation by linking acpidump to osunixxf.c/oswinxf.c.To make acpi_os_printf() exported by osunixxf.c/oswinxf.c to behave as theold acpidump specific ones, applications need to: 1. Initialize acpi_gbl_db_output_flags to ACPI_DB_CONSOLE_OUTPUT.    This is automatically done by ACPI_INIT_GLOBAL(), applications need to    link utglobal.o to utilize this mechanism. 2. Initialize acpi_gbl_output_file to stdout.    For GCC, assigning stdout to acpi_gbl_output_file using ACPI_INIT_GLOBAL()    is not possible as stdout is not a constant in GCC environment. As an    alternative solution, stdout assignment is put into acpi_os_initialize().    Thus acpi_os_initialize() need to be invoked very early by the    applications to initialize the default output of acpi_os_printf().This patch also releases osunixxf.c to the Linux kernel. Lv Zheng.Signed-off-by: Lv Zheng &lt;lv.zheng@intel.com&gt;Signed-off-by: Bob Moore &lt;robert.moore@intel.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Tue, 08 Jul 2014 02:06:45 +0000</pubDate>
        <dc:creator>Lv Zheng &lt;lv.zheng@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>e8c038a3 - ACPICA: Utilities: Cleanup DEFINE_ACPI_GLOBALS by moving acpi_ut_init_global() from utglobal.c to utinit.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#e8c038a3</link>
        <description>ACPICA: Utilities: Cleanup DEFINE_ACPI_GLOBALS by moving acpi_ut_init_global() from utglobal.c to utinit.cThe utglobal.c is used to define and initialize global variables.  It makessense if just adding utglobal.o to applications that are using suchvariables. But acpi_ut_init_globals() is preventing us from doing so asthis initialization function references other components&apos; initializationscode, which leads to the requirement that many files should also get linkedif one wants to link utglobal.o.It is possible to just move acpi_ut_init_global() to utinit.c forapplications that require this function to link.By linking utglobal.o, we can stop defining DEFINE_ACPI_GLOBALS forapplications (currently only acpidump is affected). Lv Zheng.Signed-off-by: Lv Zheng &lt;lv.zheng@intel.com&gt;Signed-off-by: Bob Moore &lt;robert.moore@intel.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Tue, 08 Jul 2014 02:06:39 +0000</pubDate>
        <dc:creator>Lv Zheng &lt;lv.zheng@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>d7cddbb0 - ACPI / tools: Introduce ec_access.c - tool to access the EC</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#d7cddbb0</link>
        <description>ACPI / tools: Introduce ec_access.c - tool to access the ECThis userspace tool accesses the EC through the ec_sys debug driver(through /sys/kernel/debug/ec/ec0/io).The EC command/data registers cannot be accessed directly, because theymay be manipulated by the AML interpreter in parallel.The ec_sys driver synchronizes user space (debug) access with the AMLinterpreter.Signed-off-by: Thomas Renninger &lt;trenn@suse.de&gt;[rjw: Changelog]Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Mon, 07 Apr 2014 13:16:57 +0000</pubDate>
        <dc:creator>Thomas Renninger &lt;trenn@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>75e4f206 - tools/power/acpi: Minor bugfixes</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#75e4f206</link>
        <description>tools/power/acpi: Minor bugfixes - bindir is created, but sbindir is used -&gt; fix that - the debug parts are there twice (copy paste bug?). Remove one of the   exact same partsSigned-off-by: Thomas Renninger &lt;trenn@suse.de&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Mon, 07 Apr 2014 13:16:54 +0000</pubDate>
        <dc:creator>Thomas Renninger &lt;trenn@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>edbe47c1 - ACPICA: acpidump: Update Makefile to build acpidump from ACPICA.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#edbe47c1</link>
        <description>ACPICA: acpidump: Update Makefile to build acpidump from ACPICA.This patch updates tools Makefile to use new acpidump.ACPICA&apos;s acpidump relies on various ACPICA components/common/os_specificsource code.  They are located in various kernel folders, being searchedand compiled using vpath technique in Makefile.  These files include:1. drivers/acpi/acpica/acapps.h2. tools/power/acpi/common/getopt.c3. tools/power/acpi/common/cmfsize.c4. tools/power/acpi/os_specific/service_layers/oslinuxtbl.c5. tools/power/acpi/os_specific/service_layers/osunixdir.c6. tools/power/acpi/os_specific/service_layers/osunixmap.cThis patch has been tested on DELL Inspiron Mini, acpidump output can besuccessfully generated by typing the following commands:# cd tools/power/acpi# make DEBUG=false# sudo make install DESTDIR=/opt# sudo make uninstall DESTDIR=/opt# make cleanOr# cd tools# make acpi# sudo make acpi_install# sudo make acpi_uninstall# make acpi_cleanA kernel build test is also performed on DELL Inspiron Mini to verify thatthe changes done to actypes.h and aclinux.h won&apos;t affect the kernelbuild process.Signed-off-by: Lv Zheng &lt;lv.zheng@intel.com&gt;[rjw: Subject]Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Fri, 04 Apr 2014 04:39:56 +0000</pubDate>
        <dc:creator>Lv Zheng &lt;lv.zheng@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>f677b30b - ACPICA: acpidump: Cleanup tools/power/acpi makefiles.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#f677b30b</link>
        <description>ACPICA: acpidump: Cleanup tools/power/acpi makefiles.This patch cleans up old tools/power/acpi Makefile for further porting,make it compiled in a similar way as the other tools.  No functionalchanges.The CFLAGS is modified as follows:1. Previous cc flags:   -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Os -s \   -D_LINUX -DDEFINE_ALTERNATE_TYPES -I../../../include2. Current cc flags:   DEBUG=false:   -D_LINUX -DDEFINE_ALTERNATE_TYPES -I../../../include -Wall \   -Wstrict-prototypes -Wdeclaration-after-statement -Os \   -fomit-frame-pointer   Normal:   -D_LINUX -DDEFINE_ALTERNATE_TYPES -I../../../include -Wall \   -Wstrict-prototypes -Wdeclaration-after-statement -O1 -g -DDEBUGThere is only one difference: -fomit-frame-pointer.Signed-off-by: Lv Zheng &lt;lv.zheng@intel.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Wed, 15 Jan 2014 04:04:09 +0000</pubDate>
        <dc:creator>Lv Zheng &lt;lv.zheng@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>e183fcb3 - ACPI tools / acpidump: must be run as root - install it into /usr/sbin</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#e183fcb3</link>
        <description>ACPI tools / acpidump: must be run as root - install it into /usr/sbinChange the default location to install acpidump into from /usr/binto /usr/sbin, as this tool needs to be run as root.[rjw: Subject and changelog]Signed-off-by: Thomas Renninger &lt;trenn@suse.de&gt;Tested-by: Lee, Chun-Yi &lt;jlee@suse.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Tue, 05 Feb 2013 22:35:32 +0000</pubDate>
        <dc:creator>Thomas Renninger &lt;trenn@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>45e1424b - tools/power/acpi/acpidump: create acpidump(8), local make install targets</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#45e1424b</link>
        <description>tools/power/acpi/acpidump: create acpidump(8), local make install targetsSigned-off-by: Len Brown &lt;len.brown@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Sun, 23 Sep 2012 03:30:22 +0000</pubDate>
        <dc:creator>Len Brown &lt;len.brown@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>0e7cc279 - tools/power/acpi/acpidump: create acpidump(8), local make install targets</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#0e7cc279</link>
        <description>tools/power/acpi/acpidump: create acpidump(8), local make install targetsSigned-off-by: Len Brown &lt;len.brown@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Sun, 23 Sep 2012 03:30:22 +0000</pubDate>
        <dc:creator>Len Brown &lt;len.brown@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>981efe9a - tools/power/acpi/acpidump: version 20070714</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#981efe9a</link>
        <description>tools/power/acpi/acpidump: version 20070714This is unchanged version 20070714, plus a small bit inDEFINE_ALTERNATE_TYPES to enable building with latest kernel headers.Signed-off-by: Len Brown &lt;len.brown@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Sun, 23 Sep 2012 02:49:25 +0000</pubDate>
        <dc:creator>Len Brown &lt;len.brown@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>0efea7b6 - tools/power/acpi/acpidump: version 20051111</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/power/acpi/Makefile#0efea7b6</link>
        <description>tools/power/acpi/acpidump: version 20051111This is unchanged version 20051111, plus a small bit inDEFINE_ALTERNATE_TYPES to enable building with latest kernel headers.Signed-off-by: Len Brown &lt;len.brown@intel.com&gt;

            List of files:
            /linux-6.15/tools/power/acpi/Makefile</description>
        <pubDate>Sun, 23 Sep 2012 02:33:19 +0000</pubDate>
        <dc:creator>Len Brown &lt;len.brown@intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
