# Use this to specify where BitBake should place the downloaded sources into DL_DIR = "/home/oe/down/" # Delete the line below. Then specify which .bb files to consider for # your build. Typically this will be something like BBFILES = "/path/to/openembedded/packages/*/*.bb" BBFILES := "/home/oe/org.openembedded.dev/packages/*/*.bb" # Use the BBMASK below to instruct BitBake to _NOT_ consider some .bb files # This is a regulary expression, so be sure to get your parenthesis balanced. #BBMASK = "" BBMASK = "(.*opie.*|.*qt.*|.*qp.*|.*kde.*)" # Uncomment this if you want to use a prebuilt toolchain. You will need to # provide packages for toolchain and additional libraries yourself. You also # have to set PATH in your environment to make sure BitBake finds additional binaries. # Note: You will definitely need to say: # ASSUME_PROVIDED += "virtual/arm-linux-gcc-2.95" # to build any of two Linux 2.4 Embedix kernels, # i.e. openzaurus-sa-2.4.18 and openzaurus-pxa-2.4.18 - and don't forget # to rename the binaries as instructed in the Wiki. # ASSUME_PROVIDED += "virtual/${TARGET_PREFIX}gcc virtual/libc" # ASSUME_PROVIDED += "quilt-native" # ASSUME_PROVIDED += "qemu-native" # Select between multiple alternative providers, if more than one is eligible. PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc-initial:gcc-cross-initial" PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc:gcc-cross" PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}g++:gcc-cross" PREFERRED_PROVIDER_virtual/xserver = "xserver-kdrive" PREFERRED_PROVIDER_xserver = "xserver-kdrive" PREFERRED_VERSION_atk ?= "1.9.0" PREFERRED_VERSION_cairo ?= "0.5.2" PREFERRED_VERSION_glib-2.0 = "2.8.6" PREFERRED_VERSION_pango = "1.8.2" PREFERRED_VERSION_gtk+ = "2.6.10" PREFERRED_VERSION_gtk-engines = "2.6.5" PREFERRED_VERSION_librsvg = "2.11.1" PREFERRED_VERSION_linphone = "1.5.0" MACHINE = "x86" # Don't use symlinks in in the path to avoid problems TMPDIR = /home/oe/build_${MACHINE} # Use this to specify the target operating system. The default is "linux", # for a normal linux system with glibc. Set this to "linux-uclibc" if you want # to build a uclibc based system. #TARGET_OS = "linux-gnueabi" TARGET_OS = "linux" # Uncomment this to select a distribution policy. See the conf directory # for distributions currently known to OpenEmbedded. # Although they no longer contain version number in the (file-)name # familiar-unstable and openzaurus-unstable are so called "versioned" # distros, i.e. they explicitely select specific versions of various # packages. # Stay away from unversioned distros unless you really know what you are doing # DISTRO = "angstrom-2007.1" DISTRO = "generic" # So far, angstrom.conf and familiar.conf set ENABLE_BINARY_LOCALE_GENERATION # to generate binary locale packages at build time using qemu-native and # thereby guarantee i18n support on all devices. If your build breaks on # qemu-native consider disabling ENABLE_BINARY_LOCALE_GENERATION (note that # this breaks i18n on devices with less than 128MB RAM) or installing # a working third-party qemu (e.g. provided by your distribution) and # adding qemu-native to ASSUME_PROVIDED ENABLE_BINARY_LOCALE_GENERATION = "0" # Uncomment this to select a particular major kernel version if the MACHINE setting # supports more than one major kernel version. Currently this is suported by the # following MACHINE types: poodle, tosa and simpad. MACHINE_KERNEL_VERSION = "2.6" # Add the required image file system types below. Valid are jffs2, tar, cramfs and ext2 IMAGE_FSTYPES = "tar ext2" # Comment out this to disable the parse cache (not recommended). CACHE = "${TMPDIR}/cache" # Uncomment this if you want BitBake to emit debugging output BBDEBUG = "yes" # Uncomment these two if you want BitBake to build images useful for debugging. # Note that INHIBIT_PACKAGE_STRIP needs a package format to be defined #DEBUG_BUILD = "1" #INHIBIT_PACKAGE_STRIP = "1" # Uncomment these to build a package such that you can use gprof to profile it. # NOTE: This will only work with 'linux' targets, not # 'linux-uclibc', as uClibc doesn't provide the necessary # object files. Also, don't build glibc itself with these # flags, or it'll fail to build. # # PROFILE_OPTIMIZATION = "-pg" # SELECTED_OPTIMIZATION = "${PROFILE_OPTIMIZATION}" # LDFLAGS =+ "-pg" # Uncomment this to enable parallel make. # This allows make to spawn mutliple processes to take advantage of multiple # processors. Useful on SMP machines. This may break some packages - we're # in the process of marking these so let us know if you find any. # PARALLEL_MAKE = "-j 4" # Uncomment this if you want BitBake to emit the log if a build fails. BBINCLUDELOGS = "yes"