Advertisement
Guest User

Untitled

a guest
Jul 10th, 2014
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.44 KB | None | 0 0
  1.  
  2. local.conf
  3.  
  4.  
  5. # Runtime testing of images
  6. #
  7. # The build system can test booting virtual machine images under qemu (an emulator)
  8. # after any root filesystems are created and run tests against those images. To
  9. # enable this uncomment this line
  10. #IMAGETEST = "qemu"
  11. #
  12. # This variable controls which tests are run against virtual images if enabled
  13. # above. The following would enable bat, boot the test case under the sanity suite
  14. # and perform toolchain tests
  15. #TEST_SCEN = "sanity bat sanity:boot toolchain"
  16. #
  17. # Because of the QEMU booting slowness issue (see bug #646 and #618), the
  18. # autobuilder may suffer a timeout issue when running sanity tests. We introduce
  19. # the variable TEST_SERIALIZE here to reduce the time taken by the sanity tests.
  20. # It is set to 1 by default, which will boot the image and run cases in the same
  21. # image without rebooting or killing the machine instance. If it is set to 0, the
  22. # image will be copied and tested for each case, which will take longer but be
  23. # more precise.
  24. #TEST_SERIALIZE = "1"
  25.  
  26. #
  27. # Interactive shell configuration
  28. #
  29. # Under certain circumstances the system may need input from you and to do this it
  30. # can launch an interactive shell. It needs to do this since the build is
  31. # multithreaded and needs to be able to handle the case where more than one parallel
  32. # process may require the user's attention. The default is iterate over the available
  33. # terminal types to find one that works.
  34. #
  35. # Examples of the occasions this may happen are when resolving patches which cannot
  36. # be applied, to use the devshell or the kernel menuconfig
  37. #
  38. # Supported values are auto, gnome, xfce, rxvt, screen, konsole (KDE 3.x only), none
  39. # Note: currently, Konsole support only works for KDE 3.x due to the way
  40. # newer Konsole versions behave
  41. #OE_TERMINAL = "auto"
  42. # By default disable interactive patch resolution (tasks will just fail instead):
  43. PATCHRESOLVE = "noop"
  44.  
  45. #
  46. # Disk Space Monitoring during the build
  47. #
  48. # Monitor the disk space during the build. If there is less that 1GB of space or less
  49. # than 100K inodes in any key build location (TMPDIR, DL_DIR, SSTATE_DIR), gracefully
  50. # shutdown the build. If there is less that 100MB or 1K inodes, perform a hard abort
  51. # of the build. The reason for this is that running completely out of space can corrupt
  52. # files and damages the build in ways which may not be easily recoverable.
  53. BB_DISKMON_DIRS = "\
  54. STOPTASKS,${TMPDIR},1G,100K \
  55. STOPTASKS,${DL_DIR},1G,100K \
  56. STOPTASKS,${SSTATE_DIR},1G,100K \
  57. ABORT,${TMPDIR},100M,1K \
  58. ABORT,${DL_DIR},100M,1K \
  59. ABORT,${SSTATE_DIR},100M,1K"
  60.  
  61. #
  62. # Shared-state files from other locations
  63. #
  64. # As mentioned above, shared state files are prebuilt cache data objects which can
  65. # used to accelerate build time. This variable can be used to configure the system
  66. # to search other mirror locations for these objects before it builds the data itself.
  67. #
  68. # This can be a filesystem directory, or a remote url such as http or ftp. These
  69. # would contain the sstate-cache results from previous builds (possibly from other
  70. # machines). This variable works like fetcher MIRRORS/PREMIRRORS and points to the
  71. # cache locations to check for the shared objects.
  72. # NOTE: if the mirror uses the same structure as SSTATE_DIR, you need to add PATH
  73. # at the end as shown in the examples below. This will be substituted with the
  74. # correct path within the directory structure.
  75. #SSTATE_MIRRORS ?= "\
  76. #file://.* http://someserver.tld/share/sstate/PATH;downloadfilename=PATH \n \
  77. #file://.* file:///some/local/dir/sstate/PATH"
  78.  
  79. # CONF_VERSION is increased each time build/conf/ changes incompatibly and is used to
  80. # track the version of this file when it was generated. This can safely be ignored if
  81. # this doesn't mean anything to you.
  82. CONF_VERSION = "1"
  83.  
  84. LICENSE_FLAGS_WHITELIST += "commercial"
  85. SYSVINIT_ENABLED_GETTYS = ""
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94. MY OWN B FILE
  95.  
  96.  
  97. DESCRIPTION = "To Compile beaglebone black file system with qt support for packages and drivers"
  98. LICENSE = "MIT"
  99. PR = "r3"
  100.  
  101. LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \
  102. file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
  103.  
  104. IMAGE_FEATURES += "package-management"
  105.  
  106. TOUCH = ' ${@base_contains("MACHINE_FEATURES", "touchscreen", "tslib tslib-calibrate tslib-tests", "",d)}'
  107.  
  108. IMAGE_INSTALL += "\
  109. ${CORE_IMAGE_BASE_INSTALL} \
  110. qt4-embedded \
  111. libqt-embedded3support4 \
  112. libqt-embeddedclucene4 \
  113. libqt-embeddedcore4 \
  114. libqt-embeddeddbus4 \
  115. libqt-embeddedgui4 \
  116. libqt-embeddedhelp4 \
  117. libqt-embeddedmultimedia4 \
  118. libqt-embeddednetwork4 \
  119. libqt-embeddedscript4 \
  120. libqt-embeddedscripttools4 \
  121. libqt-embeddedsql4 \
  122. libqt-embeddedsvg4 \
  123. libqt-embeddedtest4 \
  124. libqt-embeddedwebkit4 \
  125. libqt-embeddedxml4 \
  126. libqt-embeddedxmlpatterns4 \
  127. qt4-embedded-fonts-ttf-dejavu \
  128. qt4-embedded-fonts-ttf-vera \
  129. qt4-embedded-plugin-iconengine-svgicon \
  130. qt4-embedded-plugin-imageformat-mng \
  131. qt4-embedded-plugin-imageformat-svg \
  132. qt4-embedded-plugin-imageformat-tiff \
  133. qt4-embedded-plugin-mousedriver-tslib \
  134. qt4-embedded-plugin-phonon-backend-gstreamer \
  135. qt4-embedded-plugin-script-dbus \
  136. qt4-embedded-plugin-sqldriver-sqlite \
  137. qt4-embedded-plugin-imageformat-gif \
  138. qt4-embedded-plugin-imageformat-ico \
  139. qt4-embedded-plugin-imageformat-jpeg \
  140. qt4-embedded-examples \
  141. ${TOUCH} \
  142. qt4-embedded-demos \
  143. qt-demo-init \
  144. qt4-embedded-assistant \
  145. libicui18n \
  146. tslib \
  147. tslib-calibrate \
  148. tslib-tests \
  149. opkg \
  150. gstreamer \
  151. gst-meta-base \
  152. gst-meta-video \
  153. gst-meta-audio \
  154. gst-plugins-good-videofilter \
  155. gst-plugins-ugly-mpeg2dec \
  156. gst-plugins-bad-fbdevsink \
  157. pcsc-lite \
  158. ccid \
  159. opensc \
  160. ppp \
  161. ppp-dialin \
  162. neard \
  163. ntp \
  164. lrzsz \
  165. psplash \
  166. gdb \
  167. gdbserver \
  168. minicom \
  169. strace \
  170. fbgrab \
  171. openssh \
  172. nfs-utils \
  173. bluez4 \
  174. openobex \
  175. obexd \
  176. obex-data-server \
  177. dbus \
  178. ofono \
  179. v4l-utils \
  180. usbutils \
  181. yavta \
  182. connman \
  183. lame \
  184. pulseaudio \
  185. wireless-tools \
  186. mysql5 \
  187. libnfc \
  188. libfreefare \
  189. libsdl \
  190. "
  191.  
  192. inherit core-image
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement