diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2006-10-16 17:48:37 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2006-10-16 17:48:37 +0000 |
commit | b9c86cae75b9cf2161dbc9cc61882f45f150132f (patch) | |
tree | 12ce910c01469c749ba4af3b5f7944b5b09a9acd /conf | |
parent | ff22f9bce732ba8b0e0f3ad4e8d323fdf5f41d9a (diff) |
celinux-test: distro for CELF testlab
Diffstat (limited to 'conf')
-rw-r--r-- | conf/distro/celinux-test.conf | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/conf/distro/celinux-test.conf b/conf/distro/celinux-test.conf new file mode 100644 index 0000000000..7bed702675 --- /dev/null +++ b/conf/distro/celinux-test.conf @@ -0,0 +1,66 @@ +#@-------------------------------------------------------------------- +#@TYPE: Distribution +#@NAME: CELF Linux test +#@DESCRIPTION: A Linux Distribution for the CELF test project +#@-------------------------------------------------------------------- + +DISTRO_VERSION = "${DATE}" + +# fixed SRCDATE for many packages +require conf/distro/include/sane-srcdates.inc + +# DISTRO_TYPE control behaviour of some recipes +# dropbear allow password-less root logins for "debug" +# kernel can be set to export logs to screen/serial +DISTRO_TYPE = "debug" +# DISTRO_TYPE = "release" + +# fix it to one date but allow to override in local.conf if needed +SRCDATE ?= "20060927" + +# glibc provides iconv and intl +PREFERRED_PROVIDER_virtual/libiconv = "glibc" +PREFERRED_PROVIDER_virtual/libintl = "glibc" + +# +# base +# +# +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_VERSION_binutils = "2.16" +PREFERRED_VERSION_binutils-cross = "2.16" + +PREFERRED_VERSION_gcc = "3.4.4" +PREFERRED_VERSION_gcc-cross = "3.4.4" +PREFERRED_VERSION_gcc-initial-cross = "3.4.4" + +PREFERRED_VERSION_linux-omap1_omap5912osk ?= "2.6.18+git" + +# 2.6.18 kernel does not support pcmcia-cs ioctl() calls +PCMCIA_MANAGER = "pcmciautils" + +# we want IPKG packages and Debian style naming +INHERIT += " package_ipk debian" + +# enable if build for many machines +#INHERIT += " multimachine" + +TARGET_OS = "linux" + +# use softfloat binaries to gain speed on ARM machines +TARGET_FPU = "soft" + +# set minimal version of BitBake needed +BB_MIN_VERSION = "1.6.0" + +# check for required tools and minimal BitBake version +INHERIT += "sanity" + +# we want images supporting the following features (for task-base) +DISTRO_FEATURES = "nfs pcmcia usbhost" + +# enable if want ltp iin bootstrap images +#DISTRO_EXTRA_RDEPENDS = "ltp" |