<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/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>e9ac41698b2f322d55ccf9da50a3596edb2c1800 - Remove residual blank line at start of Makefile</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/stand/fdt/Makefile#e9ac41698b2f322d55ccf9da50a3596edb2c1800</link>
        <description>Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I&apos;ll just run the command on the branches)Sponsored by: Netflix

            List of files:
            /freebsd/stand/fdt/Makefile</description>
        <pubDate>Mon, 15 Jul 2024 06:46:32 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/stand/fdt/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd/stand/fdt/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 19:55:03 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>eda28feb2e070e21db3d50b3fc177f88380b8fb4 - EFI secure boot VECTX related changes</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/stand/fdt/Makefile#eda28feb2e070e21db3d50b3fc177f88380b8fb4</link>
        <description>EFI secure boot VECTX related changesWhen VECTX is enabled as a kernel option and non-EFI loaders arebuilt, many reads will fail due to the mis-match of whetherLOADER_VERIEXEC_VECTX or not in readin.h.  Source that includesbootstrap.h must ensure the kernel option agrees with the compiletime CFLAGS in the various make related files.Submitted by:	bret_ketchum@dell.com (original revision)Reviewed by:	sjg, bdrewery, dab, bret_ketchum@dell.comMFC after:	1 weekSponsored by:	Dell EMC IsilonDifferential Revision: https://reviews.freebsd.org/D29993

            List of files:
            /freebsd/stand/fdt/Makefile</description>
        <pubDate>Fri, 30 Apr 2021 19:53:45 +0200</pubDate>
        <dc:creator>Eric van Gyzen &lt;vangyzen@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>fcdb1f03173f38a6a2d0d8fb03e600af9c088d3c - Eliminate bsd.stand.mk and -fPIC 32-bit intel builds</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/stand/fdt/Makefile#fcdb1f03173f38a6a2d0d8fb03e600af9c088d3c</link>
        <description>Eliminate bsd.stand.mk and -fPIC 32-bit intel buildsOK. We don&apos;t really need a bsd.stand.mk, and it was causing a -fPICfor the toolchain to be added (bogusly) when building on amd64. Pullall relevant defs back into defs.mk and delete bsd.stand.mk.This saves about 15-20k on i386 loader and zfsloader which whencombined with Lua give us a lot more stack space in those constrainedenvironments.

            List of files:
            /freebsd/stand/fdt/Makefile</description>
        <pubDate>Fri, 16 Feb 2018 01:17:32 +0100</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8299b37f854e0b217d1b296185991fa5e3dcb0d4 - Centralize several variables.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/stand/fdt/Makefile#8299b37f854e0b217d1b296185991fa5e3dcb0d4</link>
        <description>Centralize several variables.MK_CTF, MK_SSP, MK_PROFILE, NO_PIC, and INTERNALLIB are always thesame, so set them in defs.mk. MAN= is common, so set it here too.This removes a lot of boring repetition from the Makefiles that addedalmost no value.

            List of files:
            /freebsd/stand/fdt/Makefile</description>
        <pubDate>Fri, 02 Feb 2018 07:32:26 +0100</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6780e684d49034610f82bea5d3bfb04d42e91628 - libfdt: Update to 1.4.6, switch to using libfdt for overlay support</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/stand/fdt/Makefile#6780e684d49034610f82bea5d3bfb04d42e91628</link>
        <description>libfdt: Update to 1.4.6, switch to using libfdt for overlay supportlibfdt highlights since 1.4.3:- fdt_property_placeholder added to create a property without specifying itsvalue at creation time- stringlist helper functions added to libfdt- Improved overlay support- Various internal cleanupAlso switch stand/fdt over to using libfdt for overlay support with thisupdate. Our current overlay implementation works only for limited use caseswith overlays generated only by some specific versions of our dtc(1). Swapit out for the libfdt implementation, which supports any properly generatedoverlay being applied to a properly generated base.This will be followed up fairly soon with an update to dtc(1) in tree toproperly generate overlays.MFC note: the &lt;stdlib.h&gt; include this update introduces in libfdt_env.h isapparently not necessary in the context we use this in. It&apos;s not immediatelyclear to me the motivation for it being introduced, but it came in withoverlay support. I&apos;ve left it in for the sake of accuracy and because it&apos;snot harmful here on HEAD, but MFC&apos;ing this to stable/11 will requirewrapping the #include in an `#ifndef _STANDALONE` block or else it willcause build failures.Tested on:	Banana Pi-M3 (ARMv7)Tested on:	Pine64 (aarch64)Tested on:	PowerPC [nwhitehorn]Reviewed by:	manu, nwhitehornMFC after:	1 weekDifferential Revision:	https://reviews.freebsd.org/D13893

            List of files:
            /freebsd/stand/fdt/Makefile</description>
        <pubDate>Thu, 18 Jan 2018 05:39:09 +0100</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>82725ba9bf1fd59746a4006a06f24d4d61d142f2 - Merge ^/head r325999 through r326131.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/stand/fdt/Makefile#82725ba9bf1fd59746a4006a06f24d4d61d142f2</link>
        <description>Merge ^/head r325999 through r326131.

            List of files:
            /freebsd/stand/fdt/Makefile</description>
        <pubDate>Thu, 23 Nov 2017 15:28:14 +0100</pubDate>
        <dc:creator>Hans Petter Selasky &lt;hselasky@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8a4217aacf57330755501a349d0ea662d4880386 - Move some more common stuff up to Makefile.inc. In particular, the no</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/stand/fdt/Makefile#8a4217aacf57330755501a349d0ea662d4880386</link>
        <description>Move some more common stuff up to Makefile.inc. In particular, the nosimd / no float stuff is centeralized here. Also centralise-ffreestanding since it is specified everywhere.This, along with a change to share/mk/bsd.cpu.mk to include -mno-avx2in CFLAGS_NO_SIMD should fix building for newer machines (eg withCPUTYPE=haswell) where clang was generating avx2 instructions.Sponsored by: Netflix

            List of files:
            /freebsd/stand/fdt/Makefile</description>
        <pubDate>Mon, 20 Nov 2017 23:42:17 +0100</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>55b1c6e7e4a6909004e13c6d2f328f911a8e7b83 - Merge ^/head r325663 through r325841.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/stand/fdt/Makefile#55b1c6e7e4a6909004e13c6d2f328f911a8e7b83</link>
        <description>Merge ^/head r325663 through r325841.

            List of files:
            /freebsd/stand/fdt/Makefile</description>
        <pubDate>Wed, 15 Nov 2017 12:28:11 +0100</pubDate>
        <dc:creator>Hans Petter Selasky &lt;hselasky@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ca987d4641cdcd7f27e153db17c5bf064934faf5 - Move sys/boot to stand. Fix all references to new location</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/stand/fdt/Makefile#ca987d4641cdcd7f27e153db17c5bf064934faf5</link>
        <description>Move sys/boot to stand. Fix all references to new locationSponsored by:	Netflix

            List of files:
            /freebsd/stand/fdt/Makefile</description>
        <pubDate>Wed, 15 Nov 2017 00:02:19 +0100</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
