Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. # It really depends on order of the layers appearing in BBLAYERS
  2. # variable in toplevel bblayers.conf file, where bitbake will search
  3. # for .inc files and others where bitbake uses BBPATH since it will
  4. # search the directories from first to last as specified in BBPATH
  5. # Therefore if you want a given layer to be considered high priority
  6. # for the .inc and .conf etc. then consider it adding at the beginning
  7. # of BBPATH. For bblayers bitbake will use BBFILES_PRIORITY to resolve
  8. # the recipe contention so the order of directories in BBFILES does
  9. # not matter.
  10.  
  11. # We have a conf and classes directory, append to BBPATH
  12. BBPATH .= ":${LAYERDIR}"
  13.  
  14. # We have a recipes directory, add to BBFILES
  15. #BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
  16. BBFILES += "${LAYERDIR}/recipes-support/opencv/*.bb ${LAYERDIR}/recipes-support/opencv/*.bbappend"
  17.  
  18. BBFILE_COLLECTIONS += "openembedded-layer"
  19. BBFILE_PATTERN_openembedded-layer := "^${LAYERDIR}/"
  20.  
  21. # Define the priority for recipes (.bb files) from this layer,
  22. # choosing carefully how this layer interacts with all of the
  23. # other layers.
  24.  
  25. BBFILE_PRIORITY_openembedded-layer = "6"
  26.  
  27. # This should only be incremented on significant changes that will
  28. # cause compatibility issues with other layers
  29. LAYERVERSION_openembedded-layer = "1"
  30.  
  31. LAYERDEPENDS_openembedded-layer = "core"
  32.  
  33. LICENSE_PATH += "${LAYERDIR}/licenses"
  34.  
  35. SIGGEN_EXCLUDERECIPES_ABISAFE += " \
  36. mplayer-common \
  37. fbset-modes \
  38. gpsd-machine-conf \
  39. distro-feed-configs \
  40. ca-certificates \
  41. "
  42.  
  43. SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \
  44. usb-modeswitch-data->usb-modeswitch \
  45. "
  46.  
  47. FREESMARTPHONE_GIT = "git://git.freesmartphone.org"
  48. CORE_IMAGE_EXTRA_INSTALL += "libopencv-core-dev libopencv-highgui-dev libopencv-imgproc-dev libopencv-objdetect-dev libopencv-ml-dev"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement