libubootenv_0.2.bb 796 B

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