libubootenv_0.3.1.bb 881 B

123456789101112131415161718192021222324252627282930
  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"
  8. LIC_FILES_CHKSUM = "file://Licenses/lgpl-2.1.txt;md5=4fbd65380cdd255951079008b364516c"
  9. SECTION = "libs"
  10. SRC_URI = "git://github.com/sbabic/libubootenv;protocol=https"
  11. SRCREV = "824551ac77bab1d0f7ae34d7a7c77b155240e754"
  12. S = "${WORKDIR}/git"
  13. inherit uboot-config cmake lib_package
  14. EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release"
  15. DEPENDS = "zlib"
  16. PROVIDES += "u-boot-fw-utils"
  17. RPROVIDES_${PN}-bin += "u-boot-fw-utils"
  18. PACKAGE_ARCH = "${MACHINE_ARCH}"
  19. RRECOMMENDS_${PN}-bin_append_class-target = " u-boot-default-env"
  20. BBCLASSEXTEND = "native"