summaryrefslogtreecommitdiffstats
path: root/linux
diff options
context:
space:
mode:
authorHanoh Haim <hhaim@cisco.com>2015-06-24 14:08:10 +0300
committerHanoh Haim <hhaim@cisco.com>2015-06-24 14:08:10 +0300
commit1036035752eda75b8752e9e18841e73e871bf683 (patch)
treeff556a36d343c193fb7b737f8b0d6b86b5d96359 /linux
parent8b52a31ed2c299b759f330c4f976b9c70f5765f4 (diff)
add scripts
Diffstat (limited to 'linux')
-rwxr-xr-xlinux/b5
-rwxr-xr-xlinux/waf-1.6.8bin0 -> 86247 bytes
-rwxr-xr-xlinux/wscript31
3 files changed, 36 insertions, 0 deletions
diff --git a/linux/b b/linux/b
new file mode 100755
index 00000000..a308cf60
--- /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
index 00000000..cbd13483
--- /dev/null
+++ b/linux/waf-1.6.8
Binary files differ
diff --git a/linux/wscript b/linux/wscript
new file mode 100755
index 00000000..da735832
--- /dev/null
+++ b/linux/wscript
@@ -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)
+
+
+
+
+
+