[Feature]add MT2731_MP2_MR2_SVN388 baseline version
Change-Id: Ief04314834b31e27effab435d3ca8ba33b499059
diff --git a/meta/poky/scripts/wimac_doc.sh b/meta/poky/scripts/wimac_doc.sh
new file mode 100755
index 0000000..2ea8267
--- /dev/null
+++ b/meta/poky/scripts/wimac_doc.sh
@@ -0,0 +1,13 @@
+#!/bin/bash
+#
+# @author Howard Chen
+# @brief generate the top index for each module doc
+SYSROOT=$1
+for i in ${SYSROOT}/doc/* ;
+do
+ if [ -d ${i} ]; then
+ module=${i##*/}
+ echo "<a href=\"${module}/index.html\">${module}</a>"
+ echo "<p>"
+ fi
+done