diff options
author | Hanoh Haim <hhaim@cisco.com> | 2015-06-24 14:08:10 +0300 |
---|---|---|
committer | Hanoh Haim <hhaim@cisco.com> | 2015-06-24 14:08:10 +0300 |
commit | 1036035752eda75b8752e9e18841e73e871bf683 (patch) | |
tree | ff556a36d343c193fb7b737f8b0d6b86b5d96359 /linux_dpdk | |
parent | 8b52a31ed2c299b759f330c4f976b9c70f5765f4 (diff) |
add scripts
Diffstat (limited to 'linux_dpdk')
-rwxr-xr-x | linux_dpdk/b | 7 | ||||
-rwxr-xr-x | linux_dpdk/waf-1.6.8 | bin | 0 -> 86247 bytes | |||
-rwxr-xr-x | linux_dpdk/wscript | 52 |
3 files changed, 59 insertions, 0 deletions
diff --git a/linux_dpdk/b b/linux_dpdk/b new file mode 100755 index 00000000..ba89556f --- /dev/null +++ b/linux_dpdk/b @@ -0,0 +1,7 @@ +#! /bin/bash + +export WAFLOCK=.lock-wafbuild_dpdk +python2.7 waf-1.6.8 $@ +sts=$? +exit $sts + diff --git a/linux_dpdk/waf-1.6.8 b/linux_dpdk/waf-1.6.8 Binary files differnew file mode 100755 index 00000000..cbd13483 --- /dev/null +++ b/linux_dpdk/waf-1.6.8 diff --git a/linux_dpdk/wscript b/linux_dpdk/wscript new file mode 100755 index 00000000..be048bd8 --- /dev/null +++ b/linux_dpdk/wscript @@ -0,0 +1,52 @@ +#!/usr/bin/env python +# encoding: utf-8 + +# +# Hanoh Haim +# Cisco Systems, Inc. + + + +import ws_main + +#mandatory .... +top = ws_main.top +out = ws_main.out + +def options(opt): + ws_main.options(opt) + + +def configure(conf): + ws_main.configure(conf) + + +def build(bld): + ws_main.build(bld) + + +def build_info(bld): + ws_main.build_info(bld) + + +def release(bld): + ws_main.release(bld) + +def publish(bld): + ws_main.publish(bld) + +def publish_ext(bld): + ws_main.publish_ext(bld) + +def publish_web(bld): + ws_main.publish_web(bld) + + +def sync(bld): + ws_main.sync(bld) + + + + + + |