Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into...
[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
43 PREFERRED_VERSION_binutils = "2.16"
44 PREFERRED_VERSION_binutils-cross = "2.16"
45
46 PREFERRED_VERSION_gcc = "3.4.4"
47 PREFERRED_VERSION_gcc-cross = "3.4.4"
48 PREFERRED_VERSION_gcc-cross-initial = "3.4.4"
49 PREFERRED_VERSION_gcc-cross-intermediate = "3.4.4"
50
51 LIBC = "glibc"
52 require conf/distro/include/${LIBC}.inc
53 PREFERRED_VERSION_glibc = "2.3.5+cvs20050627"
54
55 #
56 # omap5912osk settings
57 #
58
59 # use latest booting kernel but allow to override it in local.conf
60 PREFERRED_VERSION_linux-omap1_omap5912osk ?= "2.6.18-omap1"
61
62 # gcc 3.x use other -mtune name then gcc 4.x
63 TARGET_CC_ARCH_omap5912osk = "-march=armv5te -mtune=arm926ejs"
64
65 # 2.6.18 kernel does not support pcmcia-cs ioctl() calls
66 PCMCIA_MANAGER = "pcmciautils"
67
68 #
69 # target system settings
70 #
71 TARGET_OS = "linux"
72
73 # use softfloat binaries to gain speed on ARM machines
74 TARGET_FPU_arm = "soft"
75
76 #
77 # extra checking for needed tools
78 #
79
80 # set minimal version of BitBake needed
81 BB_MIN_VERSION = "1.6.0"
82
83 # check for required tools and minimal BitBake version
84 INHERIT += "sanity"