<?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 2025</copyright>
    <generator>Java</generator><item>
        <title>2d221489df021393654805536be7effcb9d39702 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/efi/Makefile#2d221489df021393654805536be7effcb9d39702</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-bootSigned-off-by: Stefano Babic &lt;sbabic@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/efi/Makefile</description>
        <pubDate>Tue, 29 Nov 2016 15:28:28 +0000</pubDate>
        <dc:creator>Stefano Babic &lt;sbabic@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>9e40ea04e9f1a70a184504c9e2beb051eb2d9335 - Merge tag &apos;signed-efi-next&apos; of git://github.com/agraf/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/efi/Makefile#9e40ea04e9f1a70a184504c9e2beb051eb2d9335</link>
        <description>Merge tag &apos;signed-efi-next&apos; of git://github.com/agraf/u-bootPatch queue for efi - 2016-11-17Highlights this time around:  - x86 efi_loader support  - hello world efi test case  - network device name is now representative  - terminal output reports modes correctly  - fix psci reset for ls1043/ls1046  - fix efi_add_runtime_mmio definition for x86  - efi_loader support for ls2080

            List of files:
            /rk3399_rockchip-uboot/lib/efi/Makefile</description>
        <pubDate>Thu, 17 Nov 2016 16:46:45 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>5abd9137d5329e84827c265bc950287043eac636 - x86: Tidy up selection of building the EFI stub</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/efi/Makefile#5abd9137d5329e84827c265bc950287043eac636</link>
        <description>x86: Tidy up selection of building the EFI stubAt present we use a CONFIG option in efi.h to determine whether we arebuilding the EFI stub or not. This means that the same header cannot beused for EFI_LOADER support. The CONFIG option will be enabled for thewhole build, even when not building the stub.Use a different define instead, set up just for the files that make up thestub.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;Reviewed-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;Signed-off-by: Alexander Graf &lt;agraf@suse.de&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/efi/Makefile</description>
        <pubDate>Mon, 07 Nov 2016 15:47:06 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>1a2728ae4faf12874173de156b8a7e66cfbbeae5 - Merge git://git.denx.de/u-boot-x86</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/efi/Makefile#1a2728ae4faf12874173de156b8a7e66cfbbeae5</link>
        <description>Merge git://git.denx.de/u-boot-x86

            List of files:
            /rk3399_rockchip-uboot/lib/efi/Makefile</description>
        <pubDate>Wed, 05 Aug 2015 18:12:37 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>16c220d0a79feed0326c29d64e4bb482e80276d4 - efi: Add functions for decoding the EFI tables</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/efi/Makefile#16c220d0a79feed0326c29d64e4bb482e80276d4</link>
        <description>efi: Add functions for decoding the EFI tablesThe EFI stub can pass a table to U-Boot with information about the memory mapPotentially other things will follow. Add a way to access this table.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;Reviewed-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/efi/Makefile</description>
        <pubDate>Tue, 04 Aug 2015 18:33:58 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>476476e73b14696563524cbc2627a4c033ea64da - efi: Add support for loading U-Boot through an EFI stub</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/efi/Makefile#476476e73b14696563524cbc2627a4c033ea64da</link>
        <description>efi: Add support for loading U-Boot through an EFI stubIt is useful to be able to load U-Boot onto a board even if is it alreadyrunning EFI. This can allow access to the U-Boot command interface, flexiblebooting options and easier development.The easiest way to do this is to build U-Boot as a binary blob and have anEFI stub copy it into RAM. Add support for this feature, targeting 32-bitinitially.Also add a way to detect when U-Boot has been loaded via a stub. This goesin common.h since it needs to be widely available so that we avoid redoinginitialisation that should be skipped.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;Improvements to how the payload is built:Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;Reviewed-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;Tested-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/efi/Makefile</description>
        <pubDate>Tue, 04 Aug 2015 18:33:52 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>867a6ac86dd823de409752e9ca5dc8f4d4880f26 - efi: Add start-up library code</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/efi/Makefile#867a6ac86dd823de409752e9ca5dc8f4d4880f26</link>
        <description>efi: Add start-up library codeWhen running as an EFI application, U-Boot must request memory from EFI,and provide access to the boot services U-Boot needs.Add library code to perform these tasks. This includes efi_main() which isthe entry point from EFI. U-Boot is built as a shared library.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;Reviewed-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/efi/Makefile</description>
        <pubDate>Fri, 31 Jul 2015 15:31:36 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
</channel>
</rss>
