base.bbclass: added 'gcc-3.4' to list of gcc3 versions (Debian systems)
[vuplus_openembedded] / conf / distro / celinux-test.conf
1 #@--------------------------------------------------------------------
2 #@TYPE: Distribution
3 #@NAME: CELF Linux test
4 #@DESCRIPTION: A Linux Distribution for the CELF test project
5 #@--------------------------------------------------------------------
6
7 #
8 # core distro settings
9 #
10
11 # we want IPKG packages and Debian style naming
12 INHERIT += " package_ipk debian"
13
14 # we want images supporting the following features (for task-base)
15 DISTRO_FEATURES = "nfs pcmcia usbhost"
16
17 # enable if you want ltp in bootstrap images
18 #DISTRO_EXTRA_RDEPENDS = "ltp"
19
20 DISTRO_VERSION = "${DATE}"
21
22 # DISTRO_TYPE control behaviour of some recipes
23 # dropbear allow password-less root logins for "debug"
24 # kernel can be set to export logs to screen/serial
25 DISTRO_TYPE = "debug"
26 # DISTRO_TYPE = "release"
27
28 # fixed SRCDATE for many packages
29 require conf/distro/include/sane-srcdates.inc
30
31 # fix it to one date but allow to override in local.conf if needed
32 SRCDATE ?= "20060927"
33
34 #
35 # toolchain
36 #
37 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc-initial:gcc-cross-initial"
38 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc-intermediate:gcc-cross-intermediate"
39 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc:gcc-cross"
40 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}g++:gcc-cross"
41 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}binutils:binutils-cross"
42 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}libc-for-gcc:glibc"
43
44 PREFERRED_VERSION_binutils = "2.16"
45 PREFERRED_VERSION_binutils-cross = "2.16"
46
47 PREFERRED_VERSION_gcc = "3.4.4"
48 PREFERRED_VERSION_gcc-cross = "3.4.4"
49 PREFERRED_VERSION_gcc-cross-initial = "3.4.4"
50 PREFERRED_VERSION_gcc-cross-intermediate = "3.4.4"
51
52 PREFERRED_VERSION_glibc = "2.3.5+cvs20050627"
53
54 # glibc provides iconv and intl
55 PREFERRED_PROVIDER_virtual/libiconv = "glibc"
56 PREFERRED_PROVIDER_virtual/libintl = "glibc"
57
58 #
59 # omap5912osk settings
60 #
61
62 # use latest booting kernel but allow to override it in local.conf
63 PREFERRED_VERSION_linux-omap1_omap5912osk ?= "2.6.18-omap1"
64
65 # gcc 3.x use other -mtune name then gcc 4.x
66 TARGET_CC_ARCH_omap5912osk = "-march=armv5te -mtune=arm926ejs"
67
68 # 2.6.18 kernel does not support pcmcia-cs ioctl() calls
69 PCMCIA_MANAGER = "pcmciautils"
70
71 #
72 # target system settings
73 #
74 TARGET_OS = "linux"
75
76 # use softfloat binaries to gain speed on ARM machines
77 TARGET_FPU_arm = "soft"
78
79 #
80 # extra checking for needed tools
81 #
82
83 # set minimal version of BitBake needed
84 BB_MIN_VERSION = "1.6.0"
85
86 # check for required tools and minimal BitBake version
87 INHERIT += "sanity"