<?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>e9ac41698b2f322d55ccf9da50a3596edb2c1800 - Remove residual blank line at start of Makefile</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/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-src/libexec/hyperv/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>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-src/libexec/hyperv/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:55:03 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>db953e8b97756df2d6907408388952bcc301c762 - pkgbase: Create a FreeBSD-hyperv package</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/Makefile#db953e8b97756df2d6907408388952bcc301c762</link>
        <description>pkgbase: Create a FreeBSD-hyperv packagePut all hyperv utilities in it.Differential Revision:	 https://reviews.freebsd.org/D31805

            List of files:
            /freebsd-src/libexec/hyperv/Makefile</description>
        <pubDate>Thu, 02 Sep 2021 15:13:45 +0000</pubDate>
        <dc:creator>Emmanuel Vadot &lt;manu@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>0275f9dbf73b01e9478dc7d6ab5fab4f8e077448 - Merge ^/head r321383 through r322397.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/Makefile#0275f9dbf73b01e9478dc7d6ab5fab4f8e077448</link>
        <description>Merge ^/head r321383 through r322397.

            List of files:
            /freebsd-src/libexec/hyperv/Makefile</description>
        <pubDate>Fri, 11 Aug 2017 10:59:34 +0000</pubDate>
        <dc:creator>Hans Petter Selasky &lt;hselasky@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d59ead01d83460374ba0e7be8096b1a66d737efb - MFhead@r321970</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/Makefile#d59ead01d83460374ba0e7be8096b1a66d737efb</link>
        <description>MFhead@r321970

            List of files:
            /freebsd-src/libexec/hyperv/Makefile</description>
        <pubDate>Thu, 03 Aug 2017 05:30:11 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>69ef36e315772f884582ffc5ef888400fad61f52 - MFhead@r321829</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/Makefile#69ef36e315772f884582ffc5ef888400fad61f52</link>
        <description>MFhead@r321829

            List of files:
            /freebsd-src/libexec/hyperv/Makefile</description>
        <pubDate>Mon, 31 Jul 2017 23:04:12 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c685956956793831f724177309eace82c4b347b9 - hyperv: Add VF bringup scripts and devd rules.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/Makefile#c685956956793831f724177309eace82c4b347b9</link>
        <description>hyperv: Add VF bringup scripts and devd rules.How network VF works with hn(4) on Hyper-V in non-transparent mode:- Each network VF has a cooresponding hn(4).- The network VF and the it&apos;s cooresponding hn(4) have the same hardware  address.- Once the network VF is up, e.g. ifconfig VF up:  o  All of the transmission should go through the network VF.  o  Most of the reception goes through the network VF.  o  Small amount of reception may go through the cooresponding hn(4).     This reception will happen, even if the the cooresponding hn(4) is     down.  The cooresponding hn(4) will change the reception interface     to the network VF, so that network layer and application layer will     be tricked into thinking that these packets were received by the     network VF.  o  The cooresponding hn(4) pretends the physical link is down.- Once the network VF is down or detached:  o  All of the transmission should go through the cooresponding hn(4).  o  All of the reception goes through the cooresponding hn(4).  o  The cooresponding hn(4) fallbacks to the original physical link     detection logic.All these features are mainly used to help live migration, during whichthe network VF will be detached, while the network communication to theVM must not be cut off.  In order to reach this level of live migrationtransparency, we use failover mode lagg(4) with the network VF and thecooresponding hn(4) attached to it.To ease user configuration for both network VF and non-network VF, thelagg(4) will be created by the following rules, and the configurationof the cooresponding hn(4) will be applied to the lagg(4) automatically.Sponsored by:	MicrosoftDifferential Revision:	https://reviews.freebsd.org/D11635

            List of files:
            /freebsd-src/libexec/hyperv/Makefile</description>
        <pubDate>Mon, 31 Jul 2017 07:18:15 +0000</pubDate>
        <dc:creator>Sepherosa Ziehau &lt;sephe@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a251f9dcf891805ae2101945d0d3082ec5a1768c - libexec: normalize paths using SRCTOP-relative paths or :H when possible</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/Makefile#a251f9dcf891805ae2101945d0d3082ec5a1768c</link>
        <description>libexec: normalize paths using SRCTOP-relative paths or :H when possibleThis simplifies make logic/outputMFC after:	1 monthSponsored by:	Dell EMC Isilon

            List of files:
            /freebsd-src/libexec/hyperv/Makefile</description>
        <pubDate>Sat, 04 Mar 2017 11:28:03 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b626f5a73a48f44a31a200291b141e1da408a2ff - MFH r289384-r293170</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/Makefile#b626f5a73a48f44a31a200291b141e1da408a2ff</link>
        <description>MFH r289384-r293170Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-src/libexec/hyperv/Makefile</description>
        <pubDate>Mon, 04 Jan 2016 19:19:48 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8d4f972badbf3513c0aa8ae210a17b4df345aed3 - Catch up with head.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/Makefile#8d4f972badbf3513c0aa8ae210a17b4df345aed3</link>
        <description>Catch up with head.

            List of files:
            /freebsd-src/libexec/hyperv/Makefile</description>
        <pubDate>Thu, 26 Nov 2015 02:16:25 +0000</pubDate>
        <dc:creator>Navdeep Parhar &lt;np@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7fdd45b0913882a815552e5a43e25e2a99b018ff - Use LIBEXECDIR for /usr/libexec.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/Makefile#7fdd45b0913882a815552e5a43e25e2a99b018ff</link>
        <description>Use LIBEXECDIR for /usr/libexec.MFC after:	1 weekSponsored by:	EMC / Isilon Storage Division

            List of files:
            /freebsd-src/libexec/hyperv/Makefile</description>
        <pubDate>Thu, 26 Nov 2015 01:14:40 +0000</pubDate>
        <dc:creator>Bryan Drewery &lt;bdrewery@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>93e779a26c651610ac6e7986d67ecc9ed2cadcbf - META MODE: These need object directories to handle staging.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/Makefile#93e779a26c651610ac6e7986d67ecc9ed2cadcbf</link>
        <description>META MODE: These need object directories to handle staging.Sponsored by:	EMC / Isilon Storage Division

            List of files:
            /freebsd-src/libexec/hyperv/Makefile</description>
        <pubDate>Thu, 26 Nov 2015 01:14:27 +0000</pubDate>
        <dc:creator>Bryan Drewery &lt;bdrewery@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9268022b74279434ed6300244e3f977e56a8ceb5 - Merge from head@274682</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/Makefile#9268022b74279434ed6300244e3f977e56a8ceb5</link>
        <description>Merge from head@274682

            List of files:
            /freebsd-src/libexec/hyperv/Makefile</description>
        <pubDate>Wed, 19 Nov 2014 01:07:58 +0000</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1ce4b357402c3cd0cba264a15c06b6fd00591088 - Sync to HEAD@r272516.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/Makefile#1ce4b357402c3cd0cba264a15c06b6fd00591088</link>
        <description>Sync to HEAD@r272516.

            List of files:
            /freebsd-src/libexec/hyperv/Makefile</description>
        <pubDate>Sat, 04 Oct 2014 12:42:37 +0000</pubDate>
        <dc:creator>Alexander V. Chernikov &lt;melifaro@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4e27d36d38f4c3b12bcc1855c5d41527d08d1ce0 - IFC @r271694</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/Makefile#4e27d36d38f4c3b12bcc1855c5d41527d08d1ce0</link>
        <description>IFC @r271694

            List of files:
            /freebsd-src/libexec/hyperv/Makefile</description>
        <pubDate>Wed, 17 Sep 2014 18:46:51 +0000</pubDate>
        <dc:creator>Neel Natu &lt;neel@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e72055b7feba695a760d45f01f0f8268b1cb4a74 - Import HyperV Key-Value Pair (KVP) driver and daemon code by Microsoft,</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/freebsd-src/libexec/hyperv/Makefile#e72055b7feba695a760d45f01f0f8268b1cb4a74</link>
        <description>Import HyperV Key-Value Pair (KVP) driver and daemon code by Microsoft,many thanks for their continued support of FreeBSD.While I&apos;m there, also implement a new build knob, WITHOUT_HYPERV todisable building and installing of the HyperV utilities when necessary.The HyperV utilities are only built for i386 and amd64 targets.This is a stable/10 candidate for inclusion with 10.1-RELEASE.Submitted by:	Wei Hu &lt;weh microsoft com&gt;MFC after:	1 week

            List of files:
            /freebsd-src/libexec/hyperv/Makefile</description>
        <pubDate>Sat, 13 Sep 2014 02:15:31 +0000</pubDate>
        <dc:creator>Xin LI &lt;delphij@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
