diff options
author | 2015-12-23 11:09:03 +0000 | |
---|---|---|
committer | 2015-12-23 11:09:03 +0000 | |
commit | 613c17266680c65bdcf4449b787e46714861e061 (patch) | |
tree | 5295c991ef4a754d82a2681168319fe98c32f6a0 /build-root/vagrant/bootstrap.ubuntu1404.sh | |
parent | 2d8862c8f6ed0d1db03c82a191dcdd3fe8b6380a (diff) | |
parent | b463ec886b6639cc072d7aaf584cffa23d9b6ea6 (diff) |
Merge "Update vagrant/ to install vpp packages and use vppctl"
Diffstat (limited to 'build-root/vagrant/bootstrap.ubuntu1404.sh')
-rw-r--r-- | build-root/vagrant/bootstrap.ubuntu1404.sh | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/build-root/vagrant/bootstrap.ubuntu1404.sh b/build-root/vagrant/bootstrap.ubuntu1404.sh index c89f098ce25..89cd4e8eac4 100644 --- a/build-root/vagrant/bootstrap.ubuntu1404.sh +++ b/build-root/vagrant/bootstrap.ubuntu1404.sh @@ -61,16 +61,12 @@ if [ -d build-root ]; then # Build vpp sudo -H -u vagrant make PLATFORM=vpp TAG=vpp_debug install-deb - # Stick the dpdk module in the canonical place - cp ./install-vpp_debug-native/dpdk/kmod/igb_uio.ko /lib/modules/`uname -r`/kernel/drivers/uio/ - depmod + # Install debian packages + dpkg -i *.deb - # Load igb_uio into the kernel - modprobe igb_uio + # Start vpp + start vpp - # Make sure igb_uio loads at boot time - # Make sure uio loads at boot time - echo igb_uio >> /lib/modprobe.d/igb_uio.conf cd ~vagrant/ cat /vagrant/README |