Advertisement
Guest User

Untitled

a guest
May 1st, 2014
472
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. MACHINE ??= 'imx6qsabresd'
  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. # Float-Point setting
  18. DEFAULTTUNE_mx6 ?= "cortexa9-neon"
  19.  
  20. # Set u-boot
  21. PREFERRED_PROVIDER_u-boot="u-boot-imx"
  22.  
  23. #Use this until I can work out how to get 2013.04 booting
  24. # AJL: We have the new u-boot booting but it needs support to read MAC address
  25. # NOTE: That UBOOT_PADDING and bin extension are used for old u-boot
  26. PREFERRED_VERSION_u-boot-imx="2009.08"
  27. # NOTE: That there is no UBOOT_PADDING and imx extension for new u-boot
  28. #PREFERRED_VERSION_u-boot-imx="2013.04"
  29. #UBOOT_SUFFIX = "imx"
  30.  
  31. #Use 3.2.8 Mono until issue with 3.4.0 is resolved
  32. #PREFERRED_VERSION_mono = "3.2.8"
  33. #PREFERRED_VERSION_mono-native = "3.2.8"
  34. PREFERRED_VERSION_mono = "3.4.0"
  35. PREFERRED_VERSION_mono-native = "3.4.0"
  36.  
  37. #Using these for the 2013.04 build
  38. #UBOOT_CONFIG = "sd"
  39. #UBOOT_CONFIG[sd] = "tix6gateway_config,sdcard"
  40.  
  41. #Use kernel 3.0.35 until I successfully port changes to 3.10.17
  42. PREFERRED_VERSION_linux-imx = "3.0.35"
  43.  
  44. BB_NUMBER_THREADS = '4'
  45. PARALLEL_MAKE = '-j 4'
  46. ACCEPT_FSL_EULA = ""
  47.  
  48. # Enable automatic PR server
  49. PRSERV_HOST = "localhost:0"
  50.  
  51. # Enable Build History
  52. INHERIT += "buildhistory"
  53. BUILDHISTORY_COMMIT = "1"
  54.  
  55. # Allow commercial licenses
  56. LICENSE_FLAGS = "commercial"
  57. LICENSE_FLAGS_WHITELIST = "commercial"
  58.  
  59. # Give us a rootfs of 1GB. This means we need a uSD of > 1GB e.g. 2GB
  60. IMAGE_ROOTFS_SIZE = "1048576"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement