Benjamin Fair | f9c38bf | 2022-10-18 22:05:09 +0000 | [diff] [blame] | 1 | SUMMARY = "TIP FW for NPCM8XX (Arbel) devices" |
| 2 | DESCRIPTION = "TIP FW for NPCM8XX (Arbel) devices" |
| 3 | HOMEPAGE = "https://github.com/Nuvoton-Israel/npcm8xx-tip-fw" |
| 4 | LICENSE = "MIT" |
Tim Lee | 5cecfc9 | 2023-01-13 15:00:50 +0800 | [diff] [blame] | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f789971f29c65e31dbb33ed209b4dc91" |
Benjamin Fair | f9c38bf | 2022-10-18 22:05:09 +0000 | [diff] [blame] | 6 | |
Tim Lee | 332ee51 | 2023-02-03 10:57:55 +0800 | [diff] [blame] | 7 | TIP_FW = "Kmt_TipFwL0_Skmt_TipFwL1.bin" |
Tim Lee | 96c3203 | 2023-11-08 17:20:35 +0800 | [diff] [blame] | 8 | SA_TIP_FW = "SA_Kmt_TipFwL0.bin" |
Tim Lee | 332ee51 | 2023-02-03 10:57:55 +0800 | [diff] [blame] | 9 | S = "${WORKDIR}/git" |
Benjamin Fair | f9c38bf | 2022-10-18 22:05:09 +0000 | [diff] [blame] | 10 | |
Tim Lee | 332ee51 | 2023-02-03 10:57:55 +0800 | [diff] [blame] | 11 | SRC_URI = "git://github.com/Nuvoton-Israel/npcm8xx-tip-fw;branch=main;protocol=https" |
Benjamin Fair | f9c38bf | 2022-10-18 22:05:09 +0000 | [diff] [blame] | 12 | |
| 13 | inherit deploy |
Benjamin Fair | f9c38bf | 2022-10-18 22:05:09 +0000 | [diff] [blame] | 14 | do_deploy () { |
Tim Lee | 332ee51 | 2023-02-03 10:57:55 +0800 | [diff] [blame] | 15 | install -D -m 644 ${OUTPUT_BIN}/${TIP_FW} ${DEPLOYDIR}/${TIP_FW} |
Tim Lee | 96c3203 | 2023-11-08 17:20:35 +0800 | [diff] [blame] | 16 | install -D -m 644 ${OUTPUT_BIN}/${SA_TIP_FW} ${DEPLOYDIR}/${SA_TIP_FW} |
Benjamin Fair | f9c38bf | 2022-10-18 22:05:09 +0000 | [diff] [blame] | 17 | } |
| 18 | |
| 19 | addtask deploy before do_build after do_compile |