From b499ae64ad0f7456552739ab3a4a5ec2da2a8002 Mon Sep 17 00:00:00 2001 From: Paul Luse Date: Wed, 17 May 2017 13:32:21 -0700 Subject: [PATCH] doc: update readme Clarrifications for DPDK submodule Change-Id: I7374c1f904f1c5c46c46c299af72816d96a770ff Signed-off-by: Paul Luse --- README.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 3c7ed516ef..9170ca6f08 100644 --- a/README.md +++ b/README.md @@ -54,27 +54,24 @@ FreeBSD: sudo pkg install gmake cunit openssl Additionally, [DPDK](http://dpdk.org/doc/quick-start) is required. The SPDK -repository includes a suitable version of DPDK as a submodule. Newer versions -of git will automatically fetch the DPDK submodule. Older versions of git may -require: +repository includes a suitable version of DPDK as a submodule: - 1) git submodule init - 2) git submodule update + git submodule update --init Building ======== Once the prerequisites are installed, building follows the common configure -and make pattern. If you followed the instructions above for building DPDK: +and make pattern (note: this will build the DPDK submodule as well). Linux: - ./configure --with-dpdk=./dpdk/x86_64-native-linuxapp-gcc + ./configure make FreeBSD: - ./configure --with-dpdk=./dpdk/x86_64-native-bsdapp-clang + ./configure gmake Vagrant