1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- DISTRO = "poky"
- DISTRO_NAME = "Yocto (Built by Poky 6.0.2)"
- DISTRO_VERSION = "1.1.2"
- SDK_VENDOR = "-pokysdk"
- SDK_VERSION := "${DISTRO_VERSION}"
- MAINTAINER = "Poky <poky@yoctoproject.org>"
- TARGET_VENDOR = "-poky"
- LOCALCONF_VERSION = "1"
- DISTRO_FEATURES_append = " largefile opengl"
- PREFERRED_VERSION_linux-yocto ?= "2.6.37+git%"
- PREFERRED_VERSION_linux-yocto_qemux86 ?= "3.0%"
- PREFERRED_VERSION_linux-yocto_qemux86-64 ?= "3.0%"
- PREFERRED_VERSION_linux-yocto_qemuarm ?= "3.0%"
- PREFERRED_VERSION_linux-yocto_qemumips ?= "3.0%"
- PREFERRED_VERSION_linux-yocto_qemuppc ?= "3.0%"
- PREFERRED_VERSION_linux-yocto-rt_qemux86 ?= "3.0%"
- PREFERRED_VERSION_linux-yocto-rt_qemux86-64 ?= "3.0%"
- PREFERRED_VERSION_linux-yocto-rt_qemuarm ?= "3.0%"
- PREFERRED_VERSION_linux-yocto-rt_qemumips ?= "3.0%"
- PREFERRED_VERSION_linux-yocto-rt_qemuppc ?= "3.0%"
- SDK_NAME = "${DISTRO}-${TCLIBC}-${SDK_ARCH}-${TARGET_ARCH}"
- SDKPATH = "/opt/${DISTRO}/${SDK_VERSION}"
- EXTRAOPKGCONFIG = "poky-feed-config-opkg"
- DISTRO_EXTRA_RDEPENDS += "task-core-boot"
- DISTRO_EXTRA_RRECOMMENDS += "kernel-module-af-packet"
- POKYQEMUDEPS = "${@base_contains("INCOMPATIBLE_LICENSE", "GPLv3", "", "qemu-config",d)}"
- DISTRO_EXTRA_RDEPENDS_append_qemuarm = " ${POKYQEMUDEPS}"
- DISTRO_EXTRA_RDEPENDS_append_qemumips = " ${POKYQEMUDEPS}"
- DISTRO_EXTRA_RDEPENDS_append_qemuppc = " ${POKYQEMUDEPS}"
- DISTRO_EXTRA_RDEPENDS_append_qemux86 = " ${POKYQEMUDEPS}"
- DISTRO_EXTRA_RDEPENDS_append_qemux86-64 = " ${POKYQEMUDEPS}"
- TCLIBCAPPEND = ""
- QEMU_TARGETS ?= "arm i386 mips mipsel ppc x86_64"
- # Other QEMU_TARGETS "mips64 mips64el sh4"
- PREMIRRORS ?= "\
- bzr://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
- cvs://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
- git://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
- hg://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
- osc://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
- p4://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
- svk://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
- svn://.*/.* http://autobuilder.yoctoproject.org/sources/ \n"
- MIRRORS =+ "\
- ftp://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
- http://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
- https://.*/.* http://autobuilder.yoctoproject.org/sources/ \n"
- # The CONNECTIVITY_CHECK_URI's are used to test whether we can succesfully
- # fetch from the network (and warn you if not). To disable the test set
- # the variable to be empty.
- CONNECTIVITY_CHECK_URIS ?= "git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=HEAD \
- https://eula-downloads.yoctoproject.org/index.php \
- http://bugzilla.yoctoproject.org/report.cgi"
|