arm-systemready-scripts-native.bb 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. SUMMARY = "System Ready Scripts"
  2. DESCRIPTION = "A collection of scripts to help with SystemReady compliance."
  3. HOMEPAGE = "https://gitlab.arm.com/systemready/systemready-scripts"
  4. inherit native
  5. LICENSE = "BSD-3-Clause"
  6. LIC_FILES_CHKSUM = "file://LICENSE;md5=85b7d439a311c22626c2e3f05daf628e"
  7. RDEPENDS:${PN} = "python3-packaging-native python3-pyyaml-native \
  8. python3-chardet-native python3-requests-native python3-construct-native \
  9. dtc-native python3-dtschema-wrapper-native"
  10. PV = "v2023.04"
  11. S = "${WORKDIR}/git"
  12. SRC_URI = "\
  13. git://git.gitlab.arm.com/systemready/systemready-scripts.git;protocol=https;nobranch=1 \
  14. file://0001-check-sr-results-Return-non-zero-exit-code-on-failur.patch \
  15. file://0002-check-sr-results-Device-tree-improvements.patch \
  16. "
  17. # The SRCREV is at the v2023.04 tag
  18. SRCREV = "f8244ab8da09f9e6005ceff81ebb234f35a2a698"
  19. do_install() {
  20. install -d ${D}/${libdir}/systemready_scripts
  21. cp -r ${S}/* ${D}/${libdir}/systemready_scripts
  22. }
  23. do_configure[noexec] = "1"
  24. do_compile[noexec] = "1"