|
Revision 42, 1.3 kB
(checked in by magon, 5 years ago)
|
Removed BBUSERROOT in favor of TOPDIR
Fixed base-image by providing DISTRO_FEED_CONFIGS var
|
| Line | |
|---|
| 1 |
MACHINE = "zipit2" |
|---|
| 2 |
DISTRO = "zipit2-1.x" |
|---|
| 3 |
UserBuildRootDir = ${TOPDIR} |
|---|
| 4 |
|
|---|
| 5 |
BBFILES := "${UserBuildRootDir}/zipitZ2BBfiles/*/*.bb \ |
|---|
| 6 |
${UserBuildRootDir}/org.openembedded.dev/packages/*/*.bb" |
|---|
| 7 |
|
|---|
| 8 |
# These statements cause the local BB tree to override |
|---|
| 9 |
# any packages files of the same name & version. |
|---|
| 10 |
BBFILE_COLLECTIONS = "upstream local" |
|---|
| 11 |
BBFILE_PATTERN_upstream = "${UserBuildRootDir}/org.openembedded.dev/" |
|---|
| 12 |
BBFILE_PATTERN_local = "${UserBuildRootDir}/zipitZ2BBfiles/" |
|---|
| 13 |
BBFILE_PRIORITY_upstream = "5" |
|---|
| 14 |
BBFILE_PRIORITY_local = "10" |
|---|
| 15 |
|
|---|
| 16 |
DL_DIR = "${UserBuildRootDir}/sources" |
|---|
| 17 |
|
|---|
| 18 |
PARALLEL_MAKE = "-j 2" |
|---|
| 19 |
BB_NUMBER_THREADS = "2" |
|---|
| 20 |
|
|---|
| 21 |
# taken from the original zipit local.conf |
|---|
| 22 |
BBMASK = "" |
|---|
| 23 |
PREFERRED_PROVIDERS = "virtual/qte:qte virtual/libqpe:libqpe-opie" |
|---|
| 24 |
PREFERRED_PROVIDERS += " virtual/libsdl:libsdl-x11" |
|---|
| 25 |
PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc-initial:gcc-cross-initial" |
|---|
| 26 |
PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc:gcc-cross" |
|---|
| 27 |
PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}g++:gcc-cross" |
|---|
| 28 |
ENABLE_BINARY_LOCALE_GENERATION = "0" |
|---|
| 29 |
ASSUME_PROVIDED += "mpfr-native" |
|---|
| 30 |
IMAGE_FSTYPES = "tar" |
|---|
| 31 |
PARALLEL_MAKE = "-j 4" |
|---|
| 32 |
BBINCLUDELOGS = "yes" |
|---|
| 33 |
|
|---|
| 34 |
# make a special tmp dir to hold our project work files, etc. |
|---|
| 35 |
# this allows you to have multiple local-*.conf files and |
|---|
| 36 |
# to switch between projects easily. |
|---|
| 37 |
TMPDIR = "${TOPDIR}/tmp.zipitZ2" |
|---|
| 38 |
|
|---|