Advertisement
Wddysr

image_overlay

Feb 20th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. #Here is an example of an overlayable image recipe
  2.  
  3. FILESEXTRAPATHS_prepend := "${THISDIR}:"
  4.  
  5. DESCRIPTION = "A test image"
  6.  
  7. # In this example overlayTest.zip contain a directory named overlayTest
  8. # overlayTest2 is also a directory
  9. SRC_URI_append = "file://overlayTest.zip file://overlayTest2"
  10.  
  11. # OVERLAY_ROOT_DIRS is a list of directories from wich content will be copied
  12. # in ${IMAGE_ROOTFS}. This list contain name of directories that must been
  13. # somehow added to ${WORKDIR} (in this example do_fetch and do_unpack does it)
  14. OVERLAY_ROOT_DIRS = "overlayTest overlayTest2"
  15.  
  16. # image_overlay class is designed to be used when inheriting an image class.
  17. inherit core-image image_overlay
  18.  
  19. # Licence can be set by the user to match the files licence
  20. LICENSE = "CLOSED"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement