Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. # We have a conf and classes directory, add to BBPATH
  2. BBPATH .= ":${LAYERDIR}"
  3.  
  4. # We have recipes-* directories, add to BBFILES
  5. BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
  6.  
  7. #BBFILE_COLLECTIONS += "skeleton"
  8. BBFILE_COLLECTIONS += "my-new-layer"
  9. #BBFILE_PATTERN_skeleton = "^${LAYERDIR}/"
  10. BBFILE_PATTERN_my-new-layer = "^${LAYERDIR}/"
  11. #BBFILE_PRIORITY_skeleton = "1"
  12. BBFILE_PRIORITY_my-new-layer = "1"
  13.  
  14. # This should only be incremented on significant changes that will
  15. # cause compatibility issues with other layers
  16. #LAYERVERSION_skeleton = "1"
  17. LAYERVERSION_my-new-layer = "1"
  18.  
  19. #LAYERDEPENDS_skeleton = "core"
  20. LAYERDEPENDS_my-new-layer = "core"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement