aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnders Roxell <anders.roxell@linaro.org>2014-11-29 23:35:02 +0100
committerAnders Roxell <anders.roxell@linaro.org>2015-01-03 02:05:26 +0100
commit638309ad1092c2dc18b823a98602286a4cd3677d (patch)
tree87a03dfa3c2797921086e4b6e4dfd94b901d2cd5
parent0dafec9f0d0101bbddb9e2bfe193e177451e7e13 (diff)
rename scripts
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
-rw-r--r--README32
-rwxr-xr-xbuild-dpdk.sh (renamed from make-dpdk-test.sh)4
-rwxr-xr-xbuild-ks2.sh (renamed from make-ks2-test.sh)4
-rwxr-xr-xbuild-netmap.sh (renamed from make-netmap-test.sh)4
-rwxr-xr-xbuild-ssc.sh (renamed from make-ssc.sh)0
-rwxr-xr-xbuild.sh (renamed from make-test.sh)0
6 files changed, 22 insertions, 22 deletions
diff --git a/README b/README
index ee96f89..8529a8a 100644
--- a/README
+++ b/README
@@ -1,9 +1,9 @@
# This repository were created for building the OpenDataPlane (ODP) project
# daily in a continues integration (CI) system.
#
-# make-ks2-test.sh builds from keystone2's ODP repository
-# make-dpdk-test.sh builds from DPDK's ODP repository
-# make-netmap-test.sh builds from netmap's ODP repository
+# build-ks2.sh builds from keystone2's ODP repository
+# build-dpdk.sh builds from DPDK's ODP repository
+# build-netmap.sh builds from netmap's ODP repository
#
# all git repositories above are located at git://git.linaro.org/lng/odp*.git
@@ -15,38 +15,38 @@ $ apt-get install build-essential git-core lib32stdc++6 lib32z1 graphviz gcc-mul
$ apt-get install autoconf automake libtool doxygen texlive-full libssl-dev
# build ODP
-# type make-test.sh -h to see what environment variables you can change.
+# type build.sh -h to see what environment variables you can change.
# Most of the time default setup are enough.
# build ODP native
-$ ./make-test.sh
+$ ./build.sh
# one example to run from a local git url
-$ GIT_ODP=file:///home/anders/src/odp ./make-test.sh
+$ GIT_ODP=file:///home/anders/src/odp ./build.sh
# build ODP for DPDK
-# type make-dpdk-test.sh -h to see what environment variables you can change.
+# type build-dpdk.sh -h to see what environment variables you can change.
# Most of the time default setup are enough.
-$ ./make-dpdk-test.sh
+$ ./build-dpdk.sh
# one example to run from a local git url
-$ GIT_DPDK=file:///home/anders/src/dpdk GIT_ODP=file:///home/anders/src/odp ./make-dpdk-test.sh
+$ GIT_DPDK=file:///home/anders/src/dpdk GIT_ODP=file:///home/anders/src/odp ./build-dpdk.sh
# build ODP for keystone2
-# type make-ks2-test.sh -h to see what environment variables you can change.
+# type build-ks2.sh -h to see what environment variables you can change.
# Most of the time default setup are enough.
-$ ./make-ks2-test.sh
+$ ./build-ks2.sh
# one example to run from a local git url
-$ GIT_KS_MANIFEST=file:///home/anders/src/ks2-manifest GIT_ODP=file:///home/anders/src/odp ./make-ks2-test.sh
+$ GIT_KS_MANIFEST=file:///home/anders/src/ks2-manifest GIT_ODP=file:///home/anders/src/odp ./build-ks2.sh
# build clang, sparse and smatch
-# type make-ssc.sh -h to see what environment variables you can change.
+# type build-ssc.sh -h to see what environment variables you can change.
# Most of the time default setup are enough.
-$ ./make-ssc.sh
+$ ./build-ssc.sh
# one example to run from a local git url
-$ git_repo=file:///home/anders/src/odp tests=clang ./make-ssc.sh
+$ git_repo=file:///home/anders/src/odp tests=clang ./build-ssc.sh
# apply and build patches, looks for doxygen warnings and git am warnings.
# type apply-and-build.sh -h to see what environment variables you can change.
@@ -55,4 +55,4 @@ $ PATCH_DIR=/home/anders/test-patches ./apply-and-build.sh
# cross compile ODP
# one example to run with another ARCH
-$ ARCH=arm64 ./make-test.sh
+$ ARCH=arm64 ./build.sh
diff --git a/make-dpdk-test.sh b/build-dpdk.sh
index 5138bc6..3dbe849 100755
--- a/make-dpdk-test.sh
+++ b/build-dpdk.sh
@@ -8,7 +8,7 @@ export GIT_ODP="${GIT_ODP:-git://git.linaro.org/lng/odp-dpdk.git}"
source ${ROOT_DIR}/helper/dpdk
usage() {
- ./make-test.sh -h
+ ./build.sh -h
dpdk_usage
}
@@ -30,7 +30,7 @@ prepare_dpdk
cd $ROOT_DIR
#common ODP build script
-./make-test.sh
+./build.sh
[[ $? -eq 1 ]] && exit 1
cd -
diff --git a/make-ks2-test.sh b/build-ks2.sh
index b1e603d..bf6a7d8 100755
--- a/make-ks2-test.sh
+++ b/build-ks2.sh
@@ -9,7 +9,7 @@ export CLEANUP="${CLEANUP:-1}"
export GIT_ODP="${GIT_ODP:-git://git.linaro.org/lng/odp-keystone2.git}"
usage() {
- ./make-test.sh -h
+ ./build.sh -h
ks2_usage
}
@@ -30,7 +30,7 @@ cleanup_exit()
prepare_ks2_build
cd ${ROOT_DIR}
-./make-test.sh
+./build.sh
[[ $? -eq 1 ]] && exit 1
cd -
diff --git a/make-netmap-test.sh b/build-netmap.sh
index f42ea07..27e90bf 100755
--- a/make-netmap-test.sh
+++ b/build-netmap.sh
@@ -9,7 +9,7 @@ export CLEANUP="${CLEANUP:-1}"
export GIT_ODP="${GIT_ODP:-git://git.linaro.org/lng/odp-netmap.git}"
usage() {
- ./make-test.sh -h
+ ./build.sh -h
netmap_usage
}
@@ -31,6 +31,6 @@ prepare_netmap
#common ODP build script
cd ${ROOT_DIR}
-./make-test.sh
+./build.sh
## vim: set sw=4 sts=4 et foldmethod=syntax : ##
diff --git a/make-ssc.sh b/build-ssc.sh
index 1528dd3..1528dd3 100755
--- a/make-ssc.sh
+++ b/build-ssc.sh
diff --git a/make-test.sh b/build.sh
index 9191cf9..9191cf9 100755
--- a/make-test.sh
+++ b/build.sh