scripts: add verbose option in build test help
[dpdk.git] / scripts / test-build.sh
index 9a11f94..7a9f623 100755 (executable)
@@ -45,7 +45,8 @@ default_path=$PATH
 # - DPDK_DEP_ZLIB (y/[n])
 # - DPDK_MAKE_JOBS (int)
 # - DPDK_NOTIFY (notify-send)
-# - LIBSSO_PATH
+# - LIBSSO_SNOW3G_PATH
+# - LIBSSO_KASUMI_PATH
 . $(dirname $(readlink -e $0))/load-devel-config.sh
 
 print_usage () {
@@ -62,6 +63,7 @@ print_help () {
                -h    this help
                -jX   use X parallel jobs in "make"
                -s    short test with only first config without examples/doc
+               -v    verbose build
 
        config: defconfig[[~][+]option1[[~][+]option2...]]
                Example: x86_64-native-linuxapp-gcc+debug~RXTX_CALLBACKS
@@ -121,7 +123,8 @@ reset_env ()
        unset DPDK_DEP_SZE
        unset DPDK_DEP_ZLIB
        unset AESNI_MULTI_BUFFER_LIB_PATH
-       unset LIBSSO_PATH
+       unset LIBSSO_SNOW3G_PATH
+       unset LIBSSO_KASUMI_PATH
        unset PQOS_INSTALL_PATH
 }
 
@@ -166,8 +169,10 @@ config () # <directory> <target> <options>
                sed -ri       's,(PMD_AESNI_MB=)n,\1y,' $1/.config
                test -z "$AESNI_MULTI_BUFFER_LIB_PATH" || \
                sed -ri      's,(PMD_AESNI_GCM=)n,\1y,' $1/.config
-               test -z "$LIBSSO_PATH" || \
+               test -z "$LIBSSO_SNOW3G_PATH" || \
                sed -ri         's,(PMD_SNOW3G=)n,\1y,' $1/.config
+               test -z "$LIBSSO_KASUMI_PATH" || \
+               sed -ri         's,(PMD_KASUMI=)n,\1y,' $1/.config
                test "$DPDK_DEP_SSL" != y || \
                sed -ri            's,(PMD_QAT=)n,\1y,' $1/.config
                sed -ri        's,(KNI_VHOST.*=)n,\1y,' $1/.config