Date: Mon, 22 Jun 2015 21:29:19 +0000 From: Eric Joyner <erj@freebsd.org> To: Stefano Garzarella <stefanogarzarella@gmail.com>, "freebsd-net@freebsd.org" <freebsd-net@freebsd.org>, freebsd-current <freebsd-current@freebsd.org>, Luigi Rizzo <rizzo@iet.unipi.it>, jfv@freebsd.org Subject: Re: FreeBSD-head ixgbe build failed Message-ID: <CA%2Bb0zg_UiN2QMUQLBHwuLFBSoEe21dyp9mqiFaiW3rEvwW3FTA@mail.gmail.com> In-Reply-To: <CAO0mX5YDajOjfvu8AZMZqSWdqqsTGbN4qp9tciZG3AofSpSaFQ@mail.gmail.com> References: <CAO0mX5YDajOjfvu8AZMZqSWdqqsTGbN4qp9tciZG3AofSpSaFQ@mail.gmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
I guess I could reverse-MFC r283668, then, to make that work on HEAD. On Mon, Jun 22, 2015, 12:07 PM Stefano Garzarella < stefanogarzarella@gmail.com> wrote: > Hi all, > I tried to compile FreeBSD-head with only "device ix" (without "device > ixv") but the build failed. > > I fixed this behavior using this patch: > diff --git a/sys/conf/files b/sys/conf/files > index 65606b0..279b161 100644 > --- a/sys/conf/files > +++ b/sys/conf/files > @@ -1774,25 +1774,25 @@ dev/ixgbe/if_ix.c optional ix inet \ > compile-with "${NORMAL_C} -I$S/dev/ixgbe -DSMP" > dev/ixgbe/if_ixv.c optional ixv inet \ > compile-with "${NORMAL_C} -I$S/dev/ixgbe -DSMP" > -dev/ixgbe/ix_txrx.c optional ix ixv inet \ > +dev/ixgbe/ix_txrx.c optional ix | ixv inet \ > compile-with "${NORMAL_C} -I$S/dev/ixgbe -DSMP" > -dev/ixgbe/ixgbe_phy.c optional ix ixv inet \ > +dev/ixgbe/ixgbe_phy.c optional ix | ixv inet \ > compile-with "${NORMAL_C} -I$S/dev/ixgbe" > -dev/ixgbe/ixgbe_api.c optional ix ixv inet \ > +dev/ixgbe/ixgbe_api.c optional ix | ixv inet \ > compile-with "${NORMAL_C} -I$S/dev/ixgbe" > -dev/ixgbe/ixgbe_common.c optional ix ixv inet \ > +dev/ixgbe/ixgbe_common.c optional ix | ixv inet \ > compile-with "${NORMAL_C} -I$S/dev/ixgbe" > -dev/ixgbe/ixgbe_mbx.c optional ix ixv inet \ > +dev/ixgbe/ixgbe_mbx.c optional ix | ixv inet \ > compile-with "${NORMAL_C} -I$S/dev/ixgbe" > -dev/ixgbe/ixgbe_vf.c optional ix ixv inet \ > +dev/ixgbe/ixgbe_vf.c optional ix | ixv inet \ > compile-with "${NORMAL_C} -I$S/dev/ixgbe" > -dev/ixgbe/ixgbe_82598.c optional ix ixv inet \ > +dev/ixgbe/ixgbe_82598.c optional ix | ixv inet \ > compile-with "${NORMAL_C} -I$S/dev/ixgbe" > -dev/ixgbe/ixgbe_82599.c optional ix ixv inet \ > +dev/ixgbe/ixgbe_82599.c optional ix | ixv inet \ > compile-with "${NORMAL_C} -I$S/dev/ixgbe" > -dev/ixgbe/ixgbe_x540.c optional ix ixv inet \ > +dev/ixgbe/ixgbe_x540.c optional ix | ixv inet \ > compile-with "${NORMAL_C} -I$S/dev/ixgbe" > -dev/ixgbe/ixgbe_x550.c optional ix ixv inet \ > +dev/ixgbe/ixgbe_x550.c optional ix | ixv inet \ > compile-with "${NORMAL_C} -I$S/dev/ixgbe" > dev/ixgbe/ixgbe_dcb.c optional ix ixv inet \ > compile-with "${NORMAL_C} -I$S/dev/ixgbe" > > cheers, > Stefano > > -- > *Stefano Garzarella* > Software Engineer > > e-mail: stefano.garzarella@gmail.com > github: http://github.com/stefano-garzarella > linkedin: http://it.linkedin.com/pub/stefano-garzarella >
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CA%2Bb0zg_UiN2QMUQLBHwuLFBSoEe21dyp9mqiFaiW3rEvwW3FTA>