<?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>94ed4c1903cf846a3f484373b8aae136762e9d09 - libifconfig: Add netlink based helper to bring the interface up/down</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#94ed4c1903cf846a3f484373b8aae136762e9d09</link>
        <description>libifconfig: Add netlink based helper to bring the interface up/downAdds `ifconfig_set_up()` to set and unset the `IFF_UP`on a network interface using `RTM_NEWLINK`.Sponsored by:	Google LLC (GSoC)Reviewed by:	obiwac, mckusick (mentor), kpApproved by:	obiwac, mckusick (mentor), kpDifferential Revision:	https://reviews.freebsd.org/D52128

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Fri, 29 Aug 2025 17:36:10 +0200</pubDate>
        <dc:creator>Muhammad Saheed &lt;saheed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1a80bcc5fafaa822e281bf963e7c58a8747a610c - Remove redundant PACKAGE for INTERNALLIB libraries</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#1a80bcc5fafaa822e281bf963e7c58a8747a610c</link>
        <description>Remove redundant PACKAGE for INTERNALLIB librariesThese libraries don&apos;t install anything, so they shouldn&apos;t have aPACKAGE setting.  This avoids surprising behaviour in future ife.g. manpages are added to an internal library.Reported by:	desDifferential Revision:	https://reviews.freebsd.org/D51901

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Sat, 23 Aug 2025 01:51:13 +0200</pubDate>
        <dc:creator>Lexi Winter &lt;ivy@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e9ac41698b2f322d55ccf9da50a3596edb2c1800 - Remove residual blank line at start of Makefile</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/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/lib/libifconfig/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/lib/libifconfig/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd/lib/libifconfig/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>c4ba4aa547184ab401204096cdad9def4ab37964 - libifconfig: Overhaul ifconfig_media_* interfaces</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#c4ba4aa547184ab401204096cdad9def4ab37964</link>
        <description>libifconfig: Overhaul ifconfig_media_* interfacesDefine an ifmedia_t type to use for ifmedia words.Add ifconfig_media_lookup_* functions to lookup ifmedia words by name.Get media options as an array of option names rather than formatting itas a comma-delimited list into a buffer.Sprinkle const on static the static description tables for peace ofmind.Don&apos;t need to zero memory allocated by calloc.Reviewed by:	kpMFC after:	2 weeksDifferential Revision:	https://reviews.freebsd.org/D29029

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Tue, 02 Mar 2021 11:29:17 +0100</pubDate>
        <dc:creator>Ryan Moeller &lt;freqlabs@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e3d06599bc06303f9420d74e47bb5032e1102d3c - libifconfig: Add a symbol map</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#e3d06599bc06303f9420d74e47bb5032e1102d3c</link>
        <description>libifconfig: Add a symbol mapThis is a no-op for now since libifconfig is only built as a static lib.Reviewed by:	freqlabs, kp, adrianDifferential Revision:	https://reviews.freebsd.org/D28119

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Thu, 14 Jan 2021 17:41:28 +0100</pubDate>
        <dc:creator>Mark Johnston &lt;markj@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4d135bbd7fd2669f2238d0d0074ce9a17d720630 - libifconfig now depends on libm due to usage of log10().</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#4d135bbd7fd2669f2238d0d0074ce9a17d720630</link>
        <description>libifconfig now depends on libm due to usage of log10().ld.bfd in particular requires -lm to come after libifconfig on thecommand line when linking rescue.Reviewed by:	freqlabs, adrianDifferential Revision:	https://reviews.freebsd.org/D26258

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Thu, 03 Sep 2020 00:10:08 +0200</pubDate>
        <dc:creator>John Baldwin &lt;jhb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>440cec3faf778469b36b998bb52aab7fbc43eae3 - MFH</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#440cec3faf778469b36b998bb52aab7fbc43eae3</link>
        <description>MFHSponsored by:	Rubicon Communications, LLC (netgate.com)

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Wed, 12 Aug 2020 19:16:26 +0200</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8460d7540b226f37a2f58b9f652e34e2fb6df3a7 - Merge ^/head r364051 through r364081.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#8460d7540b226f37a2f58b9f652e34e2fb6df3a7</link>
        <description>Merge ^/head r364051 through r364081.

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Mon, 10 Aug 2020 18:58:05 +0200</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>94cba8034ba53725c225c85e35724f0c2b13cea5 - Move ifconfig SFP status functionality into libifconfig</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#94cba8034ba53725c225c85e35724f0c2b13cea5</link>
        <description>Move ifconfig SFP status functionality into libifconfiglibifconfig_sfp.h provides an API in libifconfig for querying SFP moduleproperties, operational status, and vendor strings, as well as descriptionsof the various fields, string conversions, and other useful helpers forimplementing user interfaces.SFP module status is obtained by reading registers via an I2C interface.Descriptions of these registers and the values therein have been collectedin a Lua table which is used to generate all the boilerplace C headers andsource files for accessing these values, their names, and descriptions.The generated code is fully commented and readable.This is the first use of libifconfig in ifconfig itself.  For now, thescope remains very limited.  Over time, more of ifconfig will be replacedwith libifconfig.Some minor changes to the formatting of ifconfig output have been made:- Module memory hex dumps are indented one extra space as a result of usinghexdump(3) instead of a bespoke hex dump function.- Media descriptions have an added two-character short-name in parenthesis.- QSFP modules were incorrectly displaying TX bias current as power.  Now  TX channels display bias current, and this change has been made for both  SFP and QSFP modules for consistency.A Lua binding for libifconfig including this functionality is implementedbut has not been included in this commit.  The plan is for it to becommitted after dynamic module loading has been enabled in flua.Reviewed by:	kp, melifaroRelnotes:	yesDifferential Revision:	https://reviews.freebsd.org/D25494

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Sun, 09 Aug 2020 18:27:28 +0200</pubDate>
        <dc:creator>Ryan Moeller &lt;freqlabs@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e5539fb618cc73fa5a00fc82e35b2803dd1403b3 - libifconfig: Add function to get bridge status</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#e5539fb618cc73fa5a00fc82e35b2803dd1403b3</link>
        <description>libifconfig: Add function to get bridge statusThe new function operates similarly to ifconfig_lagg_get_lagg_status andlikewise is accompanied by a function to free the bridge status data structure.I have included in this patch the relocation of some strings describing STPparameters and the PV2ID macro from ifconfig into net/if_bridgevar.h as theyare useful for consumers of libifconfig.Reviewed by:	kp, melifaro, mmacyApproved by:	mmacy (mentor)MFC after:	1 weekRelnotes:	yesDifferential Revision:	https://reviews.freebsd.org/D25460

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Wed, 01 Jul 2020 04:32:41 +0200</pubDate>
        <dc:creator>Ryan Moeller &lt;freqlabs@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e055e3367e4febc5999d123c2fb418e9ede607d1 - wlandebug: Add include path for libifconfig as it is a internallib</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#e055e3367e4febc5999d123c2fb418e9ede607d1</link>
        <description>wlandebug: Add include path for libifconfig as it is a internallibReviewed by:	baptDifferential Revision:	https://reviews.freebsd.org/D24172

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Wed, 25 Mar 2020 02:31:26 +0100</pubDate>
        <dc:creator>Emmanuel Vadot &lt;manu@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b18a4ccab954b694b9ed6dcc83773f615c430d33 - MFhead@r344786</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#b18a4ccab954b694b9ed6dcc83773f615c430d33</link>
        <description>MFhead@r344786

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Tue, 05 Mar 2019 02:00:38 +0100</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>af373543d8a96ff2ef3ac1b28f6dfbb2eb008b22 - Merge ^/head r344513 through r344548.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#af373543d8a96ff2ef3ac1b28f6dfbb2eb008b22</link>
        <description>Merge ^/head r344513 through r344548.

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Mon, 25 Feb 2019 20:18:32 +0100</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e1157dcec4087620c1bb915ddbc244a2349d013b - Make libifconfig INTERNALLIB</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#e1157dcec4087620c1bb915ddbc244a2349d013b</link>
        <description>Make libifconfig INTERNALLIBInstead of PRIVATELIB + NO_PIC.  This avoids the need for the wlandebugPIE special case added in r344211, and provides a stronger guaranteeagainst 3rd party software coming to depend on the API or ABI.If / when we declare the API/ABI to be stable we can make it a normallibrary.Discussed with:	baptSponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Mon, 25 Feb 2019 19:22:20 +0100</pubDate>
        <dc:creator>Ed Maste &lt;emaste@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b1d757bc1dc29cda592d632b955a706215975f1d - libifconfig: multiple feature additions</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#b1d757bc1dc29cda592d632b955a706215975f1d</link>
        <description>libifconfig: multiple feature additionsAdded the ability to:* Create virtual interfaces* Create vlan interfaces* Get interface fib* Get interface groups* Get interface status* Get nd6 info* Get media status* Get additional ifaddr info in a convenient struct* Get vhids* Get carp info* Get lagg and laggport status* Iterate over all interfaces and ifaddrsAnd add more examples, too.Note that this is a backwards-incompatible change. But that&apos;s ok, because it&apos;sa private library.MFC after:	3 weeksSponsored by:	Spectra Logic CorpDifferential Revision:	https://reviews.freebsd.org/D14463

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Fri, 23 Feb 2018 04:11:43 +0100</pubDate>
        <dc:creator>Alan Somers &lt;asomers@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>93badfa1f2c7f97efac0842c59cccac862dfe112 - Merge ^/head r305687 through r305890.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#93badfa1f2c7f97efac0842c59cccac862dfe112</link>
        <description>Merge ^/head r305687 through r305890.

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Fri, 16 Sep 2016 22:49:12 +0200</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>567de0da7e0fd7359a6bba9eef92fb1d3f7fdac5 - Mark libifconfig as private until the API/ABI is stable</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#567de0da7e0fd7359a6bba9eef92fb1d3f7fdac5</link>
        <description>Mark libifconfig as private until the API/ABI is stablelibifconfig is still experimental and under active development.To avoid making any ABI promises, mark the library as privateSuggested by:	baptReviewed by:	kp

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Sun, 11 Sep 2016 19:44:35 +0200</pubDate>
        <dc:creator>Allan Jude &lt;allanjude@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>637cce3a3292c1b3729aed80c0119333fc87962a - MFhead @ r305314</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#637cce3a3292c1b3729aed80c0119333fc87962a</link>
        <description>MFhead @ r305314

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Sat, 03 Sep 2016 02:50:18 +0200</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2aeb03806ab25ef5faa88c4e51eb9f8ab684de9e - Merge ^/head r305220 through r305300.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/libifconfig/Makefile#2aeb03806ab25ef5faa88c4e51eb9f8ab684de9e</link>
        <description>Merge ^/head r305220 through r305300.

            List of files:
            /freebsd/lib/libifconfig/Makefile</description>
        <pubDate>Fri, 02 Sep 2016 21:44:23 +0200</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
