zte's code,first commit

Change-Id: I9a04da59e459a9bc0d67f101f700d9d7dc8d681b
diff --git a/boot/common/src/uboot/mksdk b/boot/common/src/uboot/mksdk
new file mode 100644
index 0000000..4277d78
--- /dev/null
+++ b/boot/common/src/uboot/mksdk
@@ -0,0 +1,18 @@
+#!/bin/sh -e
+
+if [ $1 == "cp" ]; then
+	while [ $# -gt 1 ] ; do
+		cp $2 ../../src/u-boot/$2;
+		shift;
+	done
+elif [ $1 == "rm" ]; then
+	while [ $# -gt 1 ] ; do
+		rm -f $2;
+		shift;
+	done
+elif [ $1 == "release" ]; then
+	while [ $# -gt 1 ] ; do
+		make -C $2 release;
+		shift;
+	done
+fi
\ No newline at end of file