Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2013
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.20 KB | None | 0 0
  1.  
  2. # CONF_VERSION is increased each time build/conf/ changes incompatibly
  3. CONF_VERSION = "1"
  4.  
  5. INHERIT += "rm_work"
  6.  
  7. # Which files do we want to parse:
  8. BBMASK = ""
  9.  
  10. # What kind of images do we want?
  11. IMAGE_FSTYPES_append = " tar.xz"
  12.  
  13. # Make use of SMP:
  14. # PARALLEL_MAKE specifies how many concurrent compiler threads are spawned per bitbake process
  15. # BB_NUMBER_THREADS specifies how many concurrent bitbake tasks will be run
  16. PARALLEL_MAKE = "-j8"
  17. BB_NUMBER_THREADS = "8"
  18.  
  19. DISTRO = "angstrom-v2012.12"
  20.  
  21. # Don't generate the mirror tarball for SCM repos, the snapshot is enough
  22. BB_GENERATE_MIRROR_TARBALLS = "0"
  23.  
  24. # Disable build time patch resolution. This would lauch a devshell
  25. # and wait for manual intervention. We disable it.
  26. PATCHRESOLVE = "noop"
  27.  
  28. #
  29. # Shared-state files from other locations
  30. #
  31. # Shared state files are prebuilt cache data objects which can
  32. # used to accelerate build time. This variable can be used to configure the system
  33. # to search other mirror locations for these objects before it builds the data itself.
  34. #
  35. # This can be a filesystem directory, or a remote url such as http or ftp. These
  36. # would contain the sstate-cache results from previous builds (possibly from other
  37. # machines). This variable works like fetcher MIRRORS/PREMIRRORS and points to the
  38. # cache locations to check for the shared objects.
  39. #SSTATE_MIRRORS ?= "\
  40. #file://.* http://someserver.tld/share/sstate/ \n \
  41. #file://.* file:///some/local/dir/sstate/"
  42.  
  43. #SSTATE_MIRRORS ?= "\
  44. #file://.* http://dominion.thruhere.net/angstrom/sstate-mirror/ \n "
  45. #IMAGE_INSTALL_append += "hello"
  46. IMAGE_INSTALL_append += "libphidget"
  47. IMAGE_INSTALL_append += "qt4-embedded"
  48.  
  49. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`
  50.  
  51. # LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
  52. # changes incompatibly
  53. LCONF_VERSION = "5"
  54. TOPDIR := "${@os.path.dirname(os.path.dirname(d.getVar('FILE', True)))}"
  55.  
  56. BBPATH = "${TOPDIR}"
  57.  
  58. BBFILES = ""
  59.  
  60. # These layers hold recipe metadata not found in OE-core, but lack any machine or distro content
  61. BASELAYERS ?= " \
  62. ${TOPDIR}/sources/meta-openembedded/meta-oe \
  63. ${TOPDIR}/sources/meta-openembedded/meta-systemd \
  64. ${TOPDIR}/sources/meta-openembedded/meta-efl \
  65. ${TOPDIR}/sources/meta-openembedded/meta-gpe \
  66. ${TOPDIR}/sources/meta-openembedded/meta-gnome \
  67. ${TOPDIR}/sources/meta-openembedded/meta-xfce \
  68. ${TOPDIR}/sources/meta-openembedded/meta-initramfs \
  69. ${TOPDIR}/sources/meta-openembedded/toolchain-layer \
  70. ${TOPDIR}/sources/meta-openembedded/meta-multimedia \
  71. ${TOPDIR}/sources/meta-openembedded/meta-networking \
  72. ${TOPDIR}/sources/meta-openembedded/meta-webserver \
  73. ${TOPDIR}/sources/meta-openembedded/meta-ruby \
  74. ${TOPDIR}/sources/meta-kde \
  75. ${TOPDIR}/sources/meta-opie \
  76. ${TOPDIR}/sources/meta-java \
  77. ${TOPDIR}/sources/meta-browser \
  78. ${TOPDIR}/sources/meta-mono \
  79. ${TOPDIR}/sources/meta-ros \
  80. "
  81.  
  82. # These layers hold machine specific content, aka Board Support Packages
  83. BSPLAYERS ?= " \
  84. ${TOPDIR}/sources/meta-beagleboard/common-bsp \
  85. ${TOPDIR}/sources/meta-ti \
  86. ${TOPDIR}/sources/meta-efikamx \
  87. ${TOPDIR}/sources/meta-nslu2 \
  88. ${TOPDIR}/sources/meta-smartphone/meta-htc \
  89. ${TOPDIR}/sources/meta-smartphone/meta-nokia \
  90. ${TOPDIR}/sources/meta-smartphone/meta-openmoko \
  91. ${TOPDIR}/sources/meta-smartphone/meta-palm \
  92. ${TOPDIR}/sources/meta-handheld \
  93. ${TOPDIR}/sources/meta-intel \
  94. ${TOPDIR}/sources/meta-intel/meta-sugarbay \
  95. ${TOPDIR}/sources/meta-intel/meta-crownbay \
  96. ${TOPDIR}/sources/meta-intel/meta-emenlow \
  97. ${TOPDIR}/sources/meta-intel/meta-fri2 \
  98. ${TOPDIR}/sources/meta-intel/meta-jasperforest \
  99. ${TOPDIR}/sources/meta-intel/meta-n450 \
  100. ${TOPDIR}/sources/meta-allwinner \
  101. ${TOPDIR}/sources/meta-raspberrypi \
  102. ${TOPDIR}/sources/meta-minnow \
  103. "
  104.  
  105. # Add your overlay location to EXTRALAYERS
  106. # Make sure to have a conf/layers.conf in there
  107. EXTRALAYERS ?= " \
  108. ${TOPDIR}/sources/meta-linaro \
  109. "
  110.  
  111. BBLAYERS = " \
  112. ${TOPDIR}/sources/meta-angstrom \
  113. ${BASELAYERS} \
  114. ${BSPLAYERS} \
  115. ${EXTRALAYERS} \
  116. ${TOPDIR}/sources/openembedded-core/meta \
  117. ${TOPDIR}/sources/meta-epic \
  118. "
  119.  
  120. NOTE: meta-epic is the layer that has the libphidget recipe and source
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement