<?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>3e2093de47251de5e6e61c08d2955251137afd01 - linux: Add required symbol to EXPORT_SYMS list</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#3e2093de47251de5e6e61c08d2955251137afd01</link>
        <description>linux: Add required symbol to EXPORT_SYMS listPR:		291270

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Fri, 28 Nov 2025 21:25:26 +0000</pubDate>
        <dc:creator>Ed Maste &lt;emaste@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f11c79fc0046c1579faf7cdf6505c51846cc5709 - Revert &quot;modules: Add missing opt_*.h files for stand-alone compile&quot;</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#f11c79fc0046c1579faf7cdf6505c51846cc5709</link>
        <description>Revert &quot;modules: Add missing opt_*.h files for stand-alone compile&quot;This reverts commit 1a37caeb076b9d31e13c54691d7f1eeb589798bb.I&apos;d overlooked 06c07e1203324bfe8ab4526c82dbb750864272d5 when I updated abranch I&apos;d previously committed but not updated. My search for this inmy tree before the commit was to a stale file...Sponsored by:		Netflix

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Thu, 17 Oct 2024 18:49:42 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1a37caeb076b9d31e13c54691d7f1eeb589798bb - modules: Add missing opt_*.h files for stand-alone compile</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#1a37caeb076b9d31e13c54691d7f1eeb589798bb</link>
        <description>modules: Add missing opt_*.h files for stand-alone compileStandalone compile that we at least create these opt_*.h files.Sponsored by:		Netflix

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Sat, 12 Oct 2024 20:40:41 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e9ac41698b2f322d55ccf9da50a3596edb2c1800 - Remove residual blank line at start of Makefile</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/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:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Mon, 15 Jul 2024 04:46:32 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c5f906d32d2bc8e37f1e1911382e27af7e6240ff - linux: Make module standalone-buildable</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#c5f906d32d2bc8e37f1e1911382e27af7e6240ff</link>
        <description>linux: Make module standalone-buildableAdd opt_inet.h and opt_usb.h to make linux module buildable standalone.Sponsored by:		Netflix

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Sat, 11 May 2024 22:35:54 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8e1a7e29b6cc276a2763e61b5f61afebd4570bba - sanitizers: Avoid building genassym.c and genoffset.c with sanitizers</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#8e1a7e29b6cc276a2763e61b5f61afebd4570bba</link>
        <description>sanitizers: Avoid building genassym.c and genoffset.c with sanitizersSome, particularly KASAN, may insert redzones around global symbols,resulting in incorrect offset definitions because genassym.sh (ab)usessymbol sizes to assign semantic meaning.(Ideally I would be able to define this pattern in one place, but Ihaven&apos;t found a way to define a GENSYM_CFLAGS that actually works forall of the consumers (kern.post.mk, kmod.mk, sys/conf/files*).)MFC after:	1 weekSponsored by:	Klara, Inc.Sponsored by:	Juniper Networks, Inc.

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Tue, 10 Oct 2023 18:14:46 +0000</pubDate>
        <dc:creator>Mark Johnston &lt;markj@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c6ae97c44d4dc0d90d20bec3235a6484912767a1 - sys: ${CFLAGS:N-flto} -&gt; ${CFLAGS:N-flto*}</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#c6ae97c44d4dc0d90d20bec3235a6484912767a1</link>
        <description>sys: ${CFLAGS:N-flto} -&gt; ${CFLAGS:N-flto*}For the same reason as the original https://reviews.freebsd.org/D9659:-flto=&lt;N&gt;, -flto=full, and -flto=thin also produce the GIMPLE/bitcodewhich is not supported by genassym, so filter those out as well.Signed-off-by: Alex Xu (Hello71) &lt;alex_y_xu@yahoo.ca&gt;Reviewed by: impPull Request: https://github.com/freebsd/freebsd-src/pull/898

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Tue, 26 Dec 2023 23:24:53 +0000</pubDate>
        <dc:creator>Alex Xu (Hello71) &lt;alex_y_xu@yahoo.ca&gt;</dc:creator>
    </item>
<item>
        <title>ab393e9548f8cc0ee28499c411963b798ebb38a5 - netlink: move NETLINK define to opt_global.h</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#ab393e9548f8cc0ee28499c411963b798ebb38a5</link>
        <description>netlink: move NETLINK define to opt_global.hMove the NETLINK define into opt_global.h so we can rely on it beingset correctly, without having to remember to include opt_netlink.h.This ensures that the NETLINK define is correctly set. If not wemay end up with unloadable modules, due to missing symbols (such asnlmsg_get_group_writer).PR:		274306Reviewed by:	imp, markjMFC after:	3 daysDifferential Revision:	https://reviews.freebsd.org/D42179

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Thu, 12 Oct 2023 19:55:57 +0000</pubDate>
        <dc:creator>Kristof Provost &lt;kp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>031beb4e239bfce798af17f5fe8dba8bcaf13d99 - sys: Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#031beb4e239bfce798af17f5fe8dba8bcaf13d99</link>
        <description>sys: Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:54:58 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>22dca7acf7756c07d3ccbfdc8dfd10fd9ad3f9cf - linux(4): Implement xattr syscalls</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#22dca7acf7756c07d3ccbfdc8dfd10fd9ad3f9cf</link>
        <description>linux(4): Implement xattr syscallsReviewed by:Differential revision:	https://reviews.freebsd.org/D35544MFC after:		1 month

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Sat, 22 Jul 2023 11:03:33 +0000</pubDate>
        <dc:creator>Dmitry Chagin &lt;dchagin@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c4299cec48a51996ec0bc076e5818438243e4041 - linux(4): Make linux_emul_path private</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#c4299cec48a51996ec0bc076e5818438243e4041</link>
        <description>linux(4): Make linux_emul_path privateThere is no need to refer to linux_emul_path from outside anymore.MFC after:		2 month

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Mon, 29 May 2023 08:19:08 +0000</pubDate>
        <dc:creator>Dmitry Chagin &lt;dchagin@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>960562652c7a92b8dc97a63105b04e3548f8408c - linux(4): Fix opt_netlink.h inclusion</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#960562652c7a92b8dc97a63105b04e3548f8408c</link>
        <description>linux(4): Fix opt_netlink.h inclusionAdd opt_netlink.h to the linux_common module, on i386, where we don&apos;tuses linux_common module, move opt_netlink.h inclusion underi386 condition.MFC after:		2 weeks

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Fri, 31 Mar 2023 11:56:59 +0000</pubDate>
        <dc:creator>Dmitry Chagin &lt;dchagin@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>126df352f5161c89516f9db83bdb892a170f04fb - linux(4): Move inclusion of i386-specific files under common condition</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#126df352f5161c89516f9db83bdb892a170f04fb</link>
        <description>linux(4): Move inclusion of i386-specific files under common condition

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Fri, 31 Mar 2023 11:56:29 +0000</pubDate>
        <dc:creator>Dmitry Chagin &lt;dchagin@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b894193501a7cb6ce5eed3cf86be5dd773cbbb2d - netlink: fix linux module build w/ netlink.</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#b894193501a7cb6ce5eed3cf86be5dd773cbbb2d</link>
        <description>netlink: fix linux module build w/ netlink.Reported by:	Marek Zarychta &lt;zarychtam@plan-b.pwste.edu.pl&gt;MFC after:	2 weeks

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Mon, 27 Mar 2023 18:20:38 +0000</pubDate>
        <dc:creator>Alexander V. Chernikov &lt;melifaro@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>825fbd087e6150eaf601612a5e7468ddc808e004 - linux(4): Trim unused opt_usb.h from modules Makefiles</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#825fbd087e6150eaf601612a5e7468ddc808e004</link>
        <description>linux(4): Trim unused opt_usb.h from modules MakefilesMFC after:		2 weeks

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Tue, 14 Feb 2023 14:46:33 +0000</pubDate>
        <dc:creator>Dmitry Chagin &lt;dchagin@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>10d16789a383a5b9e007dfd4c2e7844e044eaf7d - linux(4): Get rid of the opt_compat.h include.</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#10d16789a383a5b9e007dfd4c2e7844e044eaf7d</link>
        <description>linux(4): Get rid of the opt_compat.h include.Since e013e369 COMPAT_LINUX, COMPAT_LINUX32 build options are removed,so include of opt_compat.h is no more needed.MFC after:		2 weeks

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Sun, 12 Feb 2023 17:24:32 +0000</pubDate>
        <dc:creator>Dmitry Chagin &lt;dchagin@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>07db1f36848c008efb7ab6b37e199212560833ae - linux(4): Attach netlink on i386.</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#07db1f36848c008efb7ab6b37e199212560833ae</link>
        <description>linux(4): Attach netlink on i386.Discussed with:		melifaroMFC after:		3 days

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Mon, 06 Feb 2023 14:00:44 +0000</pubDate>
        <dc:creator>Dmitry Chagin &lt;dchagin@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>cc1b0f7d9626bbd116429014444cbf61edf708a2 - linux(4): Add coredump support to i386.</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#cc1b0f7d9626bbd116429014444cbf61edf708a2</link>
        <description>linux(4): Add coredump support to i386.MFC after:		1 week

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Thu, 02 Feb 2023 14:58:06 +0000</pubDate>
        <dc:creator>Dmitry Chagin &lt;dchagin@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>35548e48a41e292f373ed5773d9fb802ec263c92 - linux64: improve linux_support.s make rules</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#35548e48a41e292f373ed5773d9fb802ec263c92</link>
        <description>linux64: improve linux_support.s make rulesPreviously we relied on the .s.o rule in share/mk/bsd.suffixes.mk totell make that linux_support.o is built from linux_support.s, eventhough we do not use the .s.o rule to assemble it.Reviewed by:	sjgMFC after:	1 weekSponsored by:	The FreeBSD FoundationDifferential Revision:	https://reviews.freebsd.org/D35864

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Tue, 19 Jul 2022 20:42:27 +0000</pubDate>
        <dc:creator>Ed Maste &lt;emaste@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ccd9b49f20e7a2e6eac1e7e68db23e222bf40263 - sys: use .S for assembly language files that use the preprocessor</title>
        <link>http://opengrok.net:8080/history/src/sys/modules/linux/Makefile#ccd9b49f20e7a2e6eac1e7e68db23e222bf40263</link>
        <description>sys: use .S for assembly language files that use the preprocessorReviewed by:	impPull Request:	https://github.com/freebsd/freebsd-src/pull/609Differential Revision: https://reviews.freebsd.org/D35908

            List of files:
            /src/sys/modules/linux/Makefile</description>
        <pubDate>Sun, 24 Jul 2022 23:14:20 +0000</pubDate>
        <dc:creator>Elliott Mitchell &lt;ehem+freebsd@m5p.com&gt;</dc:creator>
    </item>
</channel>
</rss>
