libubootenv_0.3.5.bb 807 B

1234567891011121314151617181920212223242526
  1. SUMMARY = "U-Boot libraries and tools to access environment"
  2. DESCRIPTION = "This package contains tools and libraries to read \
  3. and modify U-Boot environment. \
  4. It provides a hardware-independent replacement for fw_printenv/setenv utilities \
  5. provided by U-Boot"
  6. HOMEPAGE = "https://github.com/sbabic/libubootenv"
  7. LICENSE = "LGPL-2.1-or-later"
  8. LIC_FILES_CHKSUM = "file://LICENSES/LGPL-2.1-or-later.txt;md5=4fbd65380cdd255951079008b364516c"
  9. SECTION = "libs"
  10. SRC_URI = "git://github.com/sbabic/libubootenv;protocol=https;branch=master"
  11. SRCREV = "3f4d15e36ceb58085b08dd13f3f2788e9299877b"
  12. S = "${WORKDIR}/git"
  13. inherit cmake lib_package
  14. EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release"
  15. DEPENDS = "zlib libyaml"
  16. PROVIDES += "u-boot-fw-utils"
  17. RPROVIDES:${PN}-bin += "u-boot-fw-utils"
  18. BBCLASSEXTEND = "native"