Re: [ovs-dev] [PATCH v1] ovs container build: Make kernel module configurable

2019-12-19 Thread aginwala
Thanks Ben for the review. Sorry for the delay! On Thu, Nov 21, 2019 at 4:54 PM Ben Pfaff wrote: > On Tue, Nov 12, 2019 at 12:47:58AM -0800, amgin...@gmail.com wrote: > > -./configure --localstatedir="/var" --sysconfdir="/etc" --prefix="/usr" \ > > +if [ $KERNEL_VERSION == "host" ]; then > >

Re: [ovs-dev] [PATCH v1] ovs container build: Make kernel module configurable

2019-11-21 Thread Ben Pfaff
On Tue, Nov 12, 2019 at 12:47:58AM -0800, amgin...@gmail.com wrote: > -./configure --localstatedir="/var" --sysconfdir="/etc" --prefix="/usr" \ > +if [ $KERNEL_VERSION == "host" ]; then Supporting == in [] or "test" is a GNUism. Use = for wider support (including BSD). > + ./configure

[ovs-dev] [PATCH v1] ovs container build: Make kernel module configurable

2019-11-12 Thread amginwal
From: Aliasgar Ginwala --with-linux can be made configurable while building containers for leveraging kernel modules installed on host. KERNEL_VERSION=host should be used in env variable for the same. Signed-off-by: Aliasgar Ginwala --- utilities/docker/Makefile | 2 +-