Benjamin Fair | f90af74 | 2022-10-18 20:33:29 +0000 | [diff] [blame^] | 1 | SUMMARY = "Image Generation and Programming Scripts for NPCM8XX (Arbel) devices" |
| 2 | DESCRIPTION = "Image Generation and Programming Scripts for NPCM8XX (Arbel) devices" |
| 3 | HOMEPAGE = "https://github.com/Nuvoton-Israel/igps-npcm8xx" |
| 4 | LICENSE = "GPLv2" |
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263" |
| 6 | |
| 7 | IGPS_BRANCH ?= "main" |
| 8 | SRC_URI = " \ |
| 9 | git://github.com/Nuvoton-Israel/igps-npcm8xx;branch=${IGPS_BRANCH};protocol=https \ |
| 10 | file://0001-Adjust-paths-for-use-with-Bitbake.patch \ |
| 11 | " |
| 12 | |
| 13 | S = "${WORKDIR}/git" |
| 14 | |
| 15 | DEST = "${D}${datadir}/${BPN}" |
| 16 | |
| 17 | do_install() { |
| 18 | install -d ${DEST} |
| 19 | install py_scripts/ImageGeneration/references/BootBlockAndHeader_${DEVICE_GEN}_${IGPS_MACHINE}.xml ${DEST} |
| 20 | install py_scripts/ImageGeneration/references/UbootHeader_${DEVICE_GEN}.xml ${DEST} |
| 21 | install py_scripts/ImageGeneration/inputs/BL31_AndHeader.xml ${DEST} |
| 22 | install py_scripts/ImageGeneration/inputs/OpTeeAndHeader.xml ${DEST} |
| 23 | } |
| 24 | |
| 25 | inherit native |