diff options
author | rainbow_0206 <jiangwenjiang@huawei.com> | 2018-08-14 20:04:16 +0800 |
---|---|---|
committer | rainbow_0206 <jiangwenjiang@huawei.com> | 2018-08-30 15:56:08 +0800 |
commit | 9f683fadb09aaea5a07f4673f8bbc3a7ddd38afc (patch) | |
tree | e3260f5799a8be882d7104f8b00f954f3c643863 /scripts/build_vpp.sh | |
parent | 5686565ee3b379c590a1a09a05c92db50d206add (diff) |
Feat: integrate VPP hoststack into dmm
Change-Id: I64c361cc93e02ed89ed40eb4440c36326d2dfa03
Signed-off-by: Qing Chang <qing.chang1@huawei.com>
Signed-off-by: Yalei Wang <william.wangyalei@huawei.com>
Signed-off-by: rainbow_0206 <jiangwenjiang@huawei.com>
Diffstat (limited to 'scripts/build_vpp.sh')
-rwxr-xr-x | scripts/build_vpp.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/scripts/build_vpp.sh b/scripts/build_vpp.sh new file mode 100755 index 0000000..555aa9f --- /dev/null +++ b/scripts/build_vpp.sh @@ -0,0 +1,29 @@ +#!/bin/bash +######################################################################### +# +# Copyright (c) 2018 Huawei Technologies Co.,Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at: +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +######################################################################### + +set -x + +cd ../stacks/vpp + +git clone https://gerrit.fd.io/r/vpp + +cd vpp +git checkout origin/stable/1804 -b vpp_1804_br +cp ../adapt/* src/vcl/ +git am ../patch/* +make UNATTENDED=yes install-dep +make build |