add scripts
authorHanoh Haim <[email protected]>
Wed, 24 Jun 2015 11:08:10 +0000 (14:08 +0300)
committerHanoh Haim <[email protected]>
Wed, 24 Jun 2015 11:08:10 +0000 (14:08 +0300)
linux/b [new file with mode: 0755]
linux/waf-1.6.8 [new file with mode: 0755]
linux/wscript [new file with mode: 0755]
linux_dpdk/b [new file with mode: 0755]
linux_dpdk/waf-1.6.8 [new file with mode: 0755]
linux_dpdk/wscript [new file with mode: 0755]

diff --git a/linux/b b/linux/b
new file mode 100755 (executable)
index 0000000..a308cf6
--- /dev/null
+++ b/linux/b
@@ -0,0 +1,5 @@
+#! /bin/bash
+/router/bin/python-2.7.1 waf-1.6.8 $@
+sts=$?
+exit $sts
+
diff --git a/linux/waf-1.6.8 b/linux/waf-1.6.8
new file mode 100755 (executable)
index 0000000..cbd1348
Binary files /dev/null and b/linux/waf-1.6.8 differ
diff --git a/linux/wscript b/linux/wscript
new file mode 100755 (executable)
index 0000000..da73583
--- /dev/null
@@ -0,0 +1,31 @@
+#!/usr/bin/env python
+# encoding: utf-8
+#hhaim
+
+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)
+
+
+
+
+
+
diff --git a/linux_dpdk/b b/linux_dpdk/b
new file mode 100755 (executable)
index 0000000..ba89556
--- /dev/null
@@ -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
new file mode 100755 (executable)
index 0000000..cbd1348
Binary files /dev/null and b/linux_dpdk/waf-1.6.8 differ
diff --git a/linux_dpdk/wscript b/linux_dpdk/wscript
new file mode 100755 (executable)
index 0000000..be048bd
--- /dev/null
@@ -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)
+      
+
+
+
+
+