blob: 8a1750ab4177656bbcfb3ed605cfacdf0c501be0 [file] [log] [blame]
Benjamin Fairf9c38bf2022-10-18 22:05:09 +00001SUMMARY = "TIP FW for NPCM8XX (Arbel) devices"
2DESCRIPTION = "TIP FW for NPCM8XX (Arbel) devices"
3HOMEPAGE = "https://github.com/Nuvoton-Israel/npcm8xx-tip-fw"
4LICENSE = "MIT"
Tim Lee5cecfc92023-01-13 15:00:50 +08005LIC_FILES_CHKSUM = "file://LICENSE;md5=f789971f29c65e31dbb33ed209b4dc91"
Benjamin Fairf9c38bf2022-10-18 22:05:09 +00006
Tim Lee332ee512023-02-03 10:57:55 +08007TIP_FW = "Kmt_TipFwL0_Skmt_TipFwL1.bin"
Tim Lee96c32032023-11-08 17:20:35 +08008SA_TIP_FW = "SA_Kmt_TipFwL0.bin"
Tim Lee332ee512023-02-03 10:57:55 +08009S = "${WORKDIR}/git"
Benjamin Fairf9c38bf2022-10-18 22:05:09 +000010
Tim Lee332ee512023-02-03 10:57:55 +080011SRC_URI = "git://github.com/Nuvoton-Israel/npcm8xx-tip-fw;branch=main;protocol=https"
Benjamin Fairf9c38bf2022-10-18 22:05:09 +000012
13inherit deploy
Benjamin Fairf9c38bf2022-10-18 22:05:09 +000014do_deploy () {
Tim Lee332ee512023-02-03 10:57:55 +080015 install -D -m 644 ${OUTPUT_BIN}/${TIP_FW} ${DEPLOYDIR}/${TIP_FW}
Tim Lee96c32032023-11-08 17:20:35 +080016 install -D -m 644 ${OUTPUT_BIN}/${SA_TIP_FW} ${DEPLOYDIR}/${SA_TIP_FW}
Benjamin Fairf9c38bf2022-10-18 22:05:09 +000017}
18
19addtask deploy before do_build after do_compile