[T106][ZXW-22]7520V3SCV2.01.01.02P42U09_VEC_V0.8_AP_VEC origin source commit

Change-Id: Ic6e05d89ecd62fc34f82b23dcf306c93764aec4b
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