meta-nuvoton: npcm8xx-tip-fw: modify recipe more clearer to maintain

Change to use TIPFW binary file from git repository directly that
make recipe more clearer to maintain in the future upgrade.

Signed-off-by: Tim Lee <timlee660101@gmail.com>
Change-Id: Icc413ced0ea3f92f9866647b11642a1191853082
diff --git a/meta-nuvoton/recipes-bsp/images/npcm8xx-tip-fw.inc b/meta-nuvoton/recipes-bsp/images/npcm8xx-tip-fw.inc
index 40eec80..6a9983a 100644
--- a/meta-nuvoton/recipes-bsp/images/npcm8xx-tip-fw.inc
+++ b/meta-nuvoton/recipes-bsp/images/npcm8xx-tip-fw.inc
@@ -4,21 +4,14 @@
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=f789971f29c65e31dbb33ed209b4dc91"
 
-FILENAME = "Kmt_TipFwL0_Skmt_TipFwL1_${OUTPUT_BIN}.bin"
+TIP_FW = "Kmt_TipFwL0_Skmt_TipFwL1.bin"
+S = "${WORKDIR}/git"
 
-S = "${WORKDIR}"
-
-SRC_URI = " \
-    https://github.com/Nuvoton-Israel/npcm8xx-tip-fw/raw/${SRCREV}/LICENSE;name=lic \
-    https://github.com/Nuvoton-Israel/npcm8xx-tip-fw/raw/${SRCREV}/${OUTPUT_BIN}/Kmt_TipFwL0_Skmt_TipFwL1.bin;downloadfilename=${FILENAME};name=${OUTPUT_BIN} \
-"
-
-SRC_URI[lic.sha256sum] = "84f16976acf8bdb73798989594d8547419096fb9be29a0fd84d1eba0fd550049"
+SRC_URI = "git://github.com/Nuvoton-Israel/npcm8xx-tip-fw;branch=main;protocol=https"
 
 inherit deploy
-
 do_deploy () {
-    install -D -m 644 ${WORKDIR}/${FILENAME} ${DEPLOYDIR}/Kmt_TipFwL0_Skmt_TipFwL1.bin
+    install -D -m 644 ${OUTPUT_BIN}/${TIP_FW} ${DEPLOYDIR}/${TIP_FW}
 }
 
 addtask deploy before do_build after do_compile