Advertisement
el3

local.conf

el3
Feb 14th, 2015
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. # Machine Selection
  2. #
  3. BB_NUMBER_THREADS = "8"
  4. PARALLEL_MAKE = "-j 8"
  5. #MACHINE ?= "qemuarm"
  6. #MACHINE ?= "qemumips"
  7. #MACHINE ?= "qemuppc"
  8. #MACHINE ?= "qemux86"
  9. #MACHINE ?= "qemux86-64"
  10. #
  11. # There are also the following hardware board target machines included for
  12. # demonstration purposes:
  13. #
  14. #MACHINE ?= "beaglebone"
  15. #MACHINE ?= "genericx86"
  16. #MACHINE ?= "genericx86-64"
  17. #MACHINE ?= "mpc8315e-rdb"
  18. #MACHINE ?= "edgerouter"
  19. #
  20. # This sets the default machine to be qemux86 if no other machine is selected:
  21. MACHINE ??= "qemux86"
  22.  
  23. #
  24. # Where to place downloads
  25. #
  26. DL_DIR ?= "/home/el3/yocto/downloads"
  27.  
  28. #SSTATE_DIR ?= "${TOPDIR}/sstate-cache"
  29.  
  30. #TMPDIR = "${TOPDIR}/tmp"
  31. DISTRO ?= "poky"
  32. # DISTRO ?= "poky-bleeding"
  33.  
  34. PACKAGE_CLASSES ?= "package_rpm package_deb package_ipk package_tar"
  35.  
  36. #SDKMACHINE ?= "i686"
  37. EXTRA_IMAGE_FEATURES = "debug-tweaks"
  38. USER_CLASSES ?= "buildstats image-mklibs image-prelink"
  39. #TEST_IMAGE = "1"
  40. #OE_TERMINAL = "auto"
  41. PATCHRESOLVE = "noop"
  42. BB_DISKMON_DIRS = "\
  43. STOPTASKS,${TMPDIR},1G,100K \
  44. STOPTASKS,${DL_DIR},1G,100K \
  45. STOPTASKS,${SSTATE_DIR},1G,100K \
  46. ABORT,${TMPDIR},100M,1K \
  47. ABORT,${DL_DIR},100M,1K \
  48. ABORT,${SSTATE_DIR},100M,1K"
  49.  
  50. #SSTATE_MIRRORS ?= "\
  51. #file://.* http://someserver.tld/share/sstate/PATH;downloadfilename=PATH \n \
  52. #file://.* file:///some/local/dir/sstate/PATH"
  53.  
  54.  
  55. PACKAGECONFIG_append_pn-qemu-native = " sdl"
  56. PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
  57. ASSUME_PROVIDED += "libsdl-native"
  58.  
  59. CONF_VERSION = "1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement