Advertisement
Guest User

Untitled

a guest
Feb 1st, 2015
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. MACHINE ??= 'qemux86'
  2. DISTRO ?= 'poky'
  3. PACKAGE_CLASSES ?= "package_rpm"
  4. IMAGE_FEATURES += "package-management"
  5. EXTRA_IMAGE_FEATURES = "debug-tweaks"
  6. USER_CLASSES ?= "buildstats image-mklibs image-prelink"
  7. PATCHRESOLVE = "noop"
  8. BB_DISKMON_DIRS = "\
  9. STOPTASKS,${TMPDIR},1G,100K \
  10. STOPTASKS,${DL_DIR},1G,100K \
  11. STOPTASKS,${SSTATE_DIR},1G,100K \
  12. ABORT,${TMPDIR},100M,1K \
  13. ABORT,${DL_DIR},100M,1K \
  14. ABORT,${SSTATE_DIR},100M,1K"
  15. CONF_VERSION = "1"
  16.  
  17. # Default to setting automatically based on cpu count
  18. BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}"
  19.  
  20. # Default to setting automatically based on cpu count
  21. PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}"
  22.  
  23. # Enable automatic PR server
  24. PRSERV_HOST = "localhost:0"
  25.  
  26. # Enable Build History
  27. INHERIT += "buildhistory"
  28. BUILDHISTORY_COMMIT = "1"
  29.  
  30. # Allow commercial licenses
  31. LICENSE_FLAGS = "commercial"
  32. LICENSE_FLAGS_WHITELIST = "commercial"
  33.  
  34. # Give us a rootfs of 2GB
  35. IMAGE_ROOTFS_SIZE = "2097152"
  36.  
  37. # Try to provide for package feeds
  38. FEED_DEPLOYDIR_BASE_URI = "http://packages.dynamicdevices.co.uk/yocto/"
  39.  
  40. # VMDK
  41. IMAGE_FSTYPES += "vmdk"
  42.  
  43. # Add FBDEV
  44. IMAGE_INSTALL_append = " xf86-video-fbdev xterm"
  45.  
  46. IMAGE_INSTALL_append = " gcc g++ binutils libgcc libgcc-dev libstdc++ libstdc++-dev libstdc++-staticdev \
  47. autoconf automake ccache chkconfig glib-networking glibmm \
  48. packagegroup-core-buildessential pkgconfig \
  49. boost cmake zlib glib-2.0 \
  50. ruby \
  51. cpufrequtils \
  52. nano \
  53. gdb \
  54. gstreamer \
  55. gst-meta-video \
  56. gst-plugins-base-app \
  57. gst-plugins-base \
  58. gst-plugins-good \
  59. gst-plugins-good-rtsp \
  60. gst-plugins-good-udp \
  61. gst-plugins-good-rtpmanager \
  62. gst-plugins-good-rtp \
  63. gst-plugins-good-video4linux2 \
  64. openssh-sftp-server \
  65. qtbase-fonts \
  66. qtbase-plugins \
  67. qtbase-tools \
  68. qtbase-examples \
  69. qtdeclarative \
  70. qtdeclarative-plugins \
  71. qtdeclarative-tools \
  72. qtdeclarative-qmlplugins \
  73. qtmultimedia \
  74. qtmultimedia-plugins \
  75. qtmultimedia-qmlplugins \
  76. qt3d \
  77. qt3d-qmlplugins \
  78. qt3d-tools \
  79. qtsystems \
  80. qtsystems-tools \
  81. qtsystems-qmlplugins \
  82. qtsvg \
  83. qtsvg-plugins \
  84. qtsensors \
  85. qtimageformats-plugins \
  86. qtscript \
  87. qtwebkit \
  88. qtwebkit-qmlplugins \
  89. qtwebkit-examples-examples \
  90. qtgraphicaleffects-qmlplugins \
  91. qtconnectivity-qmlplugins \
  92. qtlocation-plugins \
  93. qtlocation-qmlplugins \
  94. cinematicexperience \
  95. cairo pango fontconfig freetype pulseaudio dbus \
  96. alsa-lib alsa-tools alsa-state alsa-utils-alsaconf \
  97. i2c-tools \
  98. "
  99.  
  100. # Add ICU for webkit
  101. PACKAGECONFIG_DEFAULT_qtbase = "dbus udev evdev widgets tools libs icu"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement