Advertisement
Guest User

Untitled

a guest
Mar 26th, 2015
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. /meta-elabs$ tree
  2. .
  3. ├── conf
  4. │   └── layer.conf
  5. └── recipes-graphics
  6. └── gphoto2
  7. ├── libgphoto2-2.4.11
  8. │   ├── 0001-configure.ac-remove-AM_PO_SUBDIRS.patch
  9. │   ├── 10-camera-libgphoto2-device.fdi
  10. │   ├── 10-camera-libgphoto2.fdi
  11. │   ├── 40-libgphoto2.rules
  12. │   └── allow.to.disable.gd.patch
  13. └── libgphoto2_2.4.11.bb
  14. -----------------------------------------------------
  15. /meta-elabs$ cat conf/layer.conf
  16. # We have a conf and classes directory, add to BBPATH
  17. BBPATH := "${BBPATH}:${LAYERDIR}"
  18.  
  19. # We have a recipes directory, add to BBFILES
  20. BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \
  21. ${LAYERDIR}/recipes-*/*/*.bbappend"
  22.  
  23. BBFILE_COLLECTIONS += "elabs"
  24. BBFILE_PATTERN_elabs := "^${LAYERDIR}/"
  25. BBFILE_PRIORITY_elabs = "9"
  26.  
  27. -----------------------------------------------------
  28. yocto_build/conf$ cat bblayers.conf
  29. # LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
  30. # changes incompatibly
  31. LCONF_VERSION = "6"
  32.  
  33. BBPATH = "${TOPDIR}"
  34. BBFILES ?= ""
  35.  
  36. BBLAYERS ?= " \
  37. /home/byoakum/galileo/meta-clanton_v1.1.0-dirty/meta \
  38. /home/byoakum/galileo/meta-clanton_v1.1.0-dirty/meta-iot-devkit \
  39. /home/byoakum/galileo/meta-clanton_v1.1.0-dirty/meta-yocto \
  40. /home/byoakum/galileo/meta-clanton_v1.1.0-dirty/meta-quark-bsp \
  41. /home/byoakum/galileo/meta-clanton_v1.1.0-dirty/meta-galileo \
  42. /home/byoakum/galileo/meta-clanton_v1.1.0-dirty/meta-elabs \
  43. "
  44. BBLAYERS_NON_REMOVABLE ?= " \
  45. /home/byoakum/galileo/meta-clanton_v1.1.0-dirty/meta \
  46. /home/byoakum/galileo/meta-clanton_v1.1.0-dirty/meta-yocto \
  47. "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement