diff options
author | Ray Kinsella <ray.kinsella@intel.com> | 2017-04-04 17:38:05 +0100 |
---|---|---|
committer | Ray Kinsella <ray.kinsella@intel.com> | 2017-04-28 18:57:12 +0100 |
commit | 17fdb321f3e87bc18a6004d871a5b2b3778821b3 (patch) | |
tree | 989b32ab9a84b1ff5cd61a299c250f8aebbe597b /vpp-bootstrap/containers | |
parent | d9f6186fc27e47fcb30fc3e2463215493fb33cb4 (diff) |
vpp-bootstrap: VPP 17.04 Support
* Adding support for VPP17.04
* Disabling DPDK to reduce mem footprint to 1G
* Fixing AWS for Xenial
Change-Id: I70f4ac0e70b80fd9b50d08f88a0987c089503ff2
Signed-off-by: Ray Kinsella <ray.kinsella@intel.com>
Diffstat (limited to 'vpp-bootstrap/containers')
-rwxr-xr-x | vpp-bootstrap/containers/ctwo.provision.sh | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/vpp-bootstrap/containers/ctwo.provision.sh b/vpp-bootstrap/containers/ctwo.provision.sh index d8e5796..f914f2d 100755 --- a/vpp-bootstrap/containers/ctwo.provision.sh +++ b/vpp-bootstrap/containers/ctwo.provision.sh @@ -12,10 +12,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -VPP_VERSION=v17.01 +VPP_VERSION=v17.04 VPP_DIR=~/vpp VPP_GIT="https://git.fd.io/vpp" -PLATFORM=vpp_lite echo Cloning $VPP_GIT git clone $VPP_GIT $VPP_DIR @@ -31,8 +30,5 @@ make wipe rm -f build-root/.bootstrap.ok # Build and install packaging -make PLATFORM=$PLATFORM bootstrap -make PLATFORM=$PLATFORM build -#not sure why this is needed to called explicitly -make PLATFORM=$PLATFORM build-vpp-api -make PLATFORM=$PLATFORM plugins +make bootstrap +make build |