bbb-swu-image.bb 1.0 KB

123456789101112131415161718192021222324252627282930
  1. # Copyright (C) 2015 Unknown User <unknow@user.org>
  2. # Released under the MIT license (see COPYING.MIT for the terms)
  3. DESCRIPTION = "Example Compound image for beaglebone "
  4. SECTION = ""
  5. # Note: sw-description is mandatory
  6. SRC_URI_beaglebone = "file://sw-description \
  7. "
  8. inherit swupdate
  9. LICENSE = "MIT"
  10. LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \
  11. file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
  12. # IMAGE_DEPENDS: list of Yocto images that contains a root filesystem
  13. # it will be ensured they are built before creating swupdate image
  14. IMAGE_DEPENDS = ""
  15. # SWUPDATE_IMAGES: list of images that will be part of the compound image
  16. # the list can have any binaries - images must be in the DEPLOY directory
  17. SWUPDATE_IMAGES = " \
  18. core-image-full-cmdline \
  19. "
  20. # Images can have multiple formats - define which image must be
  21. # taken to be put in the compound image
  22. SWUPDATE_IMAGES_FSTYPES[core-image-full-cmdline] = ".ext3"
  23. COMPATIBLE = "beaglebone"