diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | README.md | 5 |
2 files changed, 5 insertions, 2 deletions
@@ -181,7 +181,7 @@ install-vpp: @echo "please install vpp as vpp's guide from source if failed" ifeq ($(PKG),deb) # @curl -s https://packagecloud.io/install/repositories/fdio/release/script.deb.sh | sudo bash - @sudo -E apt-get $(CONFIRM) $(FORCE) install vpp libvppinfra* vpp-plugin-* vpp-dev + @sudo -E apt-get $(CONFIRM) $(FORCE) install vpp vpp-lib vpp-plugins vpp-dev else ifeq ($(PKG),rpm) # @curl -s https://packagecloud.io/install/repositories/fdio/release/script.rpm.sh | sudo bash ifeq ($(OS_ID),centos) @@ -26,13 +26,16 @@ Details of the changes leading up to this version of Sweetcomb can be found unde ## Getting started +Make sure you have added FD.io repository using https://packagecloud.io/fdio/release/ +installation script. + Firstly, please follow below steps to install dependencies and build code: cd $/sweetcomb/ make install-dep make install-dep-extra make install-vpp make build-scvpp - make build + make build-plugins Then, please start each daemon one by one: start vpp (for example on Ubuntu: systemctl start vpp) |