summaryrefslogtreecommitdiffstats
path: root/meta/conf/distro/include
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-11-20 17:13:43 +0000
committerRichard Purdie <richard@openedhand.com>2006-11-20 17:13:43 +0000
commit4398b980ba11f6a76f6c863f67f174cf1dc2bef6 (patch)
treeef35bc5c6f898f654d942f972146b3b2161f3f30 /meta/conf/distro/include
parent173b999d9585d61890bdabc4d26a784bc7758ec4 (diff)
downloadpoky-4398b980ba11f6a76f6c863f67f174cf1dc2bef6.tar.gz
conf: Sync with OE
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@892 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/conf/distro/include')
-rw-r--r--meta/conf/distro/include/angstrom.inc42
-rw-r--r--meta/conf/distro/include/maemo-preferred.inc10
-rw-r--r--meta/conf/distro/include/openzaurus.inc2
-rw-r--r--meta/conf/distro/include/preferred-gpe-versions-2.7.inc6
-rw-r--r--meta/conf/distro/include/preferred-opie-versions.inc2
-rw-r--r--meta/conf/distro/include/sane-srcdates.inc15
6 files changed, 35 insertions, 42 deletions
diff --git a/meta/conf/distro/include/angstrom.inc b/meta/conf/distro/include/angstrom.inc
index 5ff9e1c942..3bf87abdb6 100644
--- a/meta/conf/distro/include/angstrom.inc
+++ b/meta/conf/distro/include/angstrom.inc
@@ -5,47 +5,47 @@
5DISTRO = "angstrom" 5DISTRO = "angstrom"
6DISTRO_NAME = "Angstrom" 6DISTRO_NAME = "Angstrom"
7 7
8TARGET_VENDOR = "-angstrom"
9MACHINE_TASK_PROVIDER = "task-base"
10
11# Can be "glibc" and "uclibc"
12ANGSTROM_MODE ?= "glibc"
13
14DEPLOY_DIR = "${TMPDIR}/deploy/${ANGSTROM_MODE}"
15require conf/distro/include/angstrom-${ANGSTROM_MODE}.inc
16
8#Use this variable in feeds and other parts that need a URI 17#Use this variable in feeds and other parts that need a URI
9ANGSTROM_URI = "http://www.angstrom-distribution.org" 18ANGSTROM_URI = "http://www.angstrom-distribution.org"
10 19
11#Set the default maintainer to angstrom-dev 20#Set the default maintainer to angstrom-dev
12MAINTAINER = "Angstrom Developers <angstrom-dev@linuxtogo.org>" 21MAINTAINER = "Angstrom Developers <angstrom-distro-devel@linuxtogo.org>"
13 22
14#use ipkg package format with debian style naming 23#use ipkg package format with debian style naming
15#use multimachine buildrules 24#use multimachine buildrules
16INHERIT += "package_ipk debian multimachine" 25INHERIT += "package_ipk debian multimachine sanity"
17 26
18#Generate locales on the buildsystem instead of on the target. Speeds up first boot, set to "1" to enable 27#Generate locales on the buildsystem instead of on the target. Speeds up first boot, set to "1" to enable
19PREFERRED_PROVIDER_qemu-native = "qemu-native" 28PREFERRED_PROVIDER_qemu-native = "qemu-native"
20ENABLE_BINARY_LOCALE_GENERATION ?= "1" 29ENABLE_BINARY_LOCALE_GENERATION ?= "1"
21 30
22 31#qemu doesn't like armv6/eabi/vfp
23#Use the ARM EABI when building for an ARM cpu. We can't use overrides 32ENABLE_BINARY_LOCALE_GENERATION_mx31ads = "0"
24#here because this breaks all places where ":=" is used.
25#if you want to build using uclibc, specify "-uclibcgnueabi"
26TARGET_VENDOR = "-angstrom"
27TARGET_OS = "linux${@['','-gnueabi'][bb.data.getVar('TARGET_ARCH',d,1)=='arm']}"
28#uclibc (needs gcc 4.1.1 or newer)
29#TARGET_OS = "linux${@['','-uclibcgnueabi'][bb.data.getVar('TARGET_ARCH',d,1)=='arm']}"
30
31#mess with compiler flags to use -Os instead of -O2
32#Please see http://free-electrons.com/doc/embedded_linux_optimizations/img47.html for some more info
33FULL_OPTIMIZATION = "-fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os"
34BUILD_OPTIMIZATION = "-Os"
35CXXFLAGS += "-fvisibility-inlines-hidden"
36 33
37#ARM EABI is softfloat by default, but let's make sure :) 34#ARM EABI is softfloat by default, but let's make sure :)
38TARGET_FPU_arm = "soft" 35#make it overridable for platforms with FPU, like ep93xx or i.mx31
36TARGET_FPU_arm ?= "soft"
37TARGET_FPU_ixp4xx ?= "soft"
38
39 39
40#Always ship these packages 40#Make a LE jffs2 image
41BOOTSTRAP_EXTRA_RDEPENDS += "angstrom-version coreutils dropbear sysvinit" 41SLUGOS_IMAGESEX = "little-endian"
42 42
43#Name the generated images in a sane way 43#Name the generated images in a sane way
44IMAGE_NAME = "${DISTRO_NAME}-${IMAGE_BASENAME}-${DISTRO_VERSION}-${MACHINE}" 44IMAGE_NAME = "${DISTRO_NAME}-${IMAGE_BASENAME}-${DISTRO_VERSION}-${MACHINE}"
45DEPLOY_DIR_IMAGE = ${DEPLOY_DIR}/images/${MACHINE} 45DEPLOY_DIR_IMAGE = "${DEPLOY_DIR}/images/${MACHINE}"
46 46
47# Angstrom *always* has some form of release config, so error out if someone thinks he knows better 47# Angstrom *always* has some form of release config, so error out if someone thinks he knows better
48DISTRO_CHECK := "${@bb.data.getVar("DISTRO_VERSION",d,1) or bb.fatal('Remove this line or set a dummy DISTRO_VERSION if you really want to build an unversioned distro')}" 48DISTRO_CHECK := "${@bb.data.getVar("DISTRO_VERSION",d,1) or bb.fatal('Remove this line or set a dummy DISTRO_VERSION if you really want to build an unversioned distro')}"
49 49
50# We want images supporting the following features (for task-base) 50# We want images supporting the following features (for task-base)
51DISTO_FEATURES = "nfs smbfs ipsec wifi ppp alsa bluetooth ext2 irda pcmcia usbgadget usbhost" 51DISTRO_FEATURES = "nfs smbfs wifi ppp alsa bluetooth ext2 irda pcmcia usbgadget usbhost"
diff --git a/meta/conf/distro/include/maemo-preferred.inc b/meta/conf/distro/include/maemo-preferred.inc
deleted file mode 100644
index 943f244326..0000000000
--- a/meta/conf/distro/include/maemo-preferred.inc
+++ /dev/null
@@ -1,10 +0,0 @@
1PREFERRED_PROVIDER_gconf = "gconf-osso"
2PREFERRED_PROVIDER_tslib = "tslib-maemo"
3PREFERRED_VERSION_dbus = "0.23.1-osso5"
4PREFERRED_VERSION_audiofile = "0.2.6-3osso4"
5PREFERRED_PROVIDER_esd = "osso-esd"
6PREFERRED_VERSION_gtk+ = "2.6.4-1.osso7"
7PREFERRED_VERSION_glib-2.0 = "2.6.4"
8PREFERRED_VERSION_pango = "1.8.1"
9PREFERRED_VERSION_atk = "1.9.0"
10PREFERRED_VERSION_diet-x11 ?= "6.2.1" \ No newline at end of file
diff --git a/meta/conf/distro/include/openzaurus.inc b/meta/conf/distro/include/openzaurus.inc
index 01877956ed..ea408ff221 100644
--- a/meta/conf/distro/include/openzaurus.inc
+++ b/meta/conf/distro/include/openzaurus.inc
@@ -22,4 +22,4 @@ BB_MIN_VERSION = "1.4.4"
22INHERIT += "sanity" 22INHERIT += "sanity"
23 23
24# We want images supporting the following features (for task-base) 24# We want images supporting the following features (for task-base)
25DISTO_FEATURES = "nfs smbfs ipsec wifi ppp alsa bluetooth ext2 irda pcmcia usbgadget usbhost" 25DISTRO_FEATURES = "nfs smbfs ipsec wifi ppp alsa bluetooth ext2 irda pcmcia usbgadget usbhost"
diff --git a/meta/conf/distro/include/preferred-gpe-versions-2.7.inc b/meta/conf/distro/include/preferred-gpe-versions-2.7.inc
index 36702025c1..662dfc386f 100644
--- a/meta/conf/distro/include/preferred-gpe-versions-2.7.inc
+++ b/meta/conf/distro/include/preferred-gpe-versions-2.7.inc
@@ -6,8 +6,8 @@
6#SRCDATE_minimo=20050401 6#SRCDATE_minimo=20050401
7 7
8#set some preferred providers: 8#set some preferred providers:
9PREFERRED_PROVIDER_gconf=gconf-dbus 9PREFERRED_PROVIDER_gconf="gconf-dbus"
10PREFERRED_PROVIDER_gnome-vfs=gnome-vfs-dbus 10PREFERRED_PROVIDER_gnome-vfs="gnome-vfs-dbus"
11 11
12#specify versions, as the header says :) 12#specify versions, as the header says :)
13PREFERRED_VERSION_libmatchbox ?= "1.7" 13PREFERRED_VERSION_libmatchbox ?= "1.7"
@@ -20,9 +20,9 @@ PREFERRED_VERSION_matchbox-applet-inputmanager ?= "0.6"
20PREFERRED_VERSION_atk ?= "1.9.0" 20PREFERRED_VERSION_atk ?= "1.9.0"
21PREFERRED_VERSION_cairo ?= "0.5.2" 21PREFERRED_VERSION_cairo ?= "0.5.2"
22PREFERRED_VERSION_glib-2.0 ?= "2.6.4" 22PREFERRED_VERSION_glib-2.0 ?= "2.6.4"
23PREFERRED_VERSION_pango ?= "1.8.2"
23PREFERRED_VERSION_gtk+ ?= "2.6.10" 24PREFERRED_VERSION_gtk+ ?= "2.6.10"
24PREFERRED_VERSION_gtk-engines ?= "2.6.5" 25PREFERRED_VERSION_gtk-engines ?= "2.6.5"
25PREFERRED_VERSION_pango ?= "1.8.1"
26PREFERRED_VERSION_librsvg ?= "2.6.5" 26PREFERRED_VERSION_librsvg ?= "2.6.5"
27PREFERRED_VERSION_libgpewidget ?= "0.109" 27PREFERRED_VERSION_libgpewidget ?= "0.109"
28PREFERRED_VERSION_libgpepimc ?= "0.5" 28PREFERRED_VERSION_libgpepimc ?= "0.5"
diff --git a/meta/conf/distro/include/preferred-opie-versions.inc b/meta/conf/distro/include/preferred-opie-versions.inc
index 34c1fd498e..d7c5b94f7a 100644
--- a/meta/conf/distro/include/preferred-opie-versions.inc
+++ b/meta/conf/distro/include/preferred-opie-versions.inc
@@ -12,7 +12,7 @@ PREFERRED_PROVIDER_virtual/libqte2 = '${@base_conditional("PALMTOP_USE_MULTITHRE
12PREFERRED_PROVIDER_virtual/libqpe1 = "libqpe-opie" 12PREFERRED_PROVIDER_virtual/libqpe1 = "libqpe-opie"
13PREFERRED_VERSION_qte-mt = "${QTE_VERSION}" 13PREFERRED_VERSION_qte-mt = "${QTE_VERSION}"
14PREFERRED_VERSION_qte = "${QTE_VERSION}" 14PREFERRED_VERSION_qte = "${QTE_VERSION}"
15PREFERRED_VERSION_libopie2 = "${OPIE_VERSION}" 15PREFERRED_VERSION_libopie2 ?= "${OPIE_VERSION}"
16PREFERRED_VERSION_libopieobex0 = "${OPIE_VERSION}" 16PREFERRED_VERSION_libopieobex0 = "${OPIE_VERSION}"
17PREFERRED_VERSION_libopietooth1 = "${OPIE_VERSION}" 17PREFERRED_VERSION_libopietooth1 = "${OPIE_VERSION}"
18PREFERRED_VERSION_libqpe-opie = "${OPIE_VERSION}" 18PREFERRED_VERSION_libqpe-opie = "${OPIE_VERSION}"
diff --git a/meta/conf/distro/include/sane-srcdates.inc b/meta/conf/distro/include/sane-srcdates.inc
index 0696ad1909..ffde56224c 100644
--- a/meta/conf/distro/include/sane-srcdates.inc
+++ b/meta/conf/distro/include/sane-srcdates.inc
@@ -5,7 +5,6 @@ SRCDATE_at76c503a-modules ?= "20060814"
5SRCDATE_prism54-module ?= "20060814" 5SRCDATE_prism54-module ?= "20060814"
6 6
7# X11 libs, extentions and protos 7# X11 libs, extentions and protos
8SRCDATE_xcalibrate ?= "20060804"
9SRCDATE_compositeext ?= "20060814" 8SRCDATE_compositeext ?= "20060814"
10SRCDATE_drm ?= "20060814" 9SRCDATE_drm ?= "20060814"
11SRCDATE_drm-kernel ?= "20060814" 10SRCDATE_drm-kernel ?= "20060814"
@@ -22,8 +21,10 @@ SRCDATE_xxf86vmext ?= "20060814"
22# Matchbox / O-hand 21# Matchbox / O-hand
23SRCDATE_contacts ?= "20060707" 22SRCDATE_contacts ?= "20060707"
24SRCDATE_dates ?= "20060707" 23SRCDATE_dates ?= "20060707"
25SRCDATE_web ?= "20060613" 24SRCDATE_fstests ?= "20061111"
26SRCDATE_eds-dbus ?= "20060707" 25SRCDATE_eds-dbus ?= "20060707"
26SRCDATE_libmatchbox ?= "20060612"
27SRCDATE_libfakekey ?= "20051101"
27SRCDATE_matchbox-common ?= "20060612" 28SRCDATE_matchbox-common ?= "20060612"
28SRCDATE_matchbox-config-gtk ?= "20060612" 29SRCDATE_matchbox-config-gtk ?= "20060612"
29SRCDATE_matchbox-desktop ?= "20060612" 30SRCDATE_matchbox-desktop ?= "20060612"
@@ -33,13 +34,14 @@ SRCDATE_matchbox-panel-manager ?= "20060612"
33SRCDATE_matchbox-stroke ?= "20060612" 34SRCDATE_matchbox-stroke ?= "20060612"
34SRCDATE_matchbox-themes-extra ?= "20060612" 35SRCDATE_matchbox-themes-extra ?= "20060612"
35SRCDATE_matchbox-wm ?= "20060612" 36SRCDATE_matchbox-wm ?= "20060612"
36SRCDATE_libmatchbox ?= "20060612" 37SRCDATE_psplash ?= "20061011"
37SRCDATE_libfakekey ?= "20051101" 38SRCDATE_web ?= "20060613"
38SRCDATE_zaurusd ?= "20060628" 39SRCDATE_zaurusd ?= "20060628"
39 40
40# GPE 41# GPE
41SRCDATE_dasher-gpe ?= "20060814" 42SRCDATE_dasher-gpe ?= "20060814"
42SRCDATE_rosetta ?= "20060804" 43SRCDATE_rosetta ?= "20060804"
44SRCDATE_libmimedir ?= "20060804"
43 45
44# GNOME 46# GNOME
45SRCDATE_gconf-dbus ?= "20060719" 47SRCDATE_gconf-dbus ?= "20060719"
@@ -54,12 +56,13 @@ SRCDATE_dvbtraffic ?= "20060814"
54SRCDATE_dvbtune ?= "20060814" 56SRCDATE_dvbtune ?= "20060814"
55SRCDATE_fdclock ?= "20060814" 57SRCDATE_fdclock ?= "20060814"
56SRCDATE_fltk ?= "20060814" 58SRCDATE_fltk ?= "20060814"
59SRCDATE_ipatience ?= "20061112"
57SRCDATE_ipkg-link ?= "20050930" 60SRCDATE_ipkg-link ?= "20050930"
58SRCDATE_ipkg-link-1 ?= "20050930" 61SRCDATE_ipkg-link-1 ?= "20050930"
59SRCDATE_ipkg-utils ?= "20050930" 62SRCDATE_ipkg-utils ?= "20050930"
60SRCDATE_ipkg-utils-native ?= "20050930" 63SRCDATE_ipkg-utils-native ?= "20050930"
61SRCDATE_kaffe-qt ?= "20060814" 64SRCDATE_kaffe-qt ?= "20060814"
62SRCDATE_kbdd ?= "20060814" 65SRCDATE_kbdd ?= "20061019"
63SRCDATE_led ?= "20060814" 66SRCDATE_led ?= "20060814"
64SRCDATE_linux-input ?= "20060814" 67SRCDATE_linux-input ?= "20060814"
65SRCDATE_madwifi-modules ?= "20060814" 68SRCDATE_madwifi-modules ?= "20060814"
@@ -68,7 +71,7 @@ SRCDATE_minimo ?= "20050401"
68SRCDATE_mystun-server ?= "20060814" 71SRCDATE_mystun-server ?= "20060814"
69SRCDATE_olsrd ?= "20060814" 72SRCDATE_olsrd ?= "20060814"
70SRCDATE_opencvs ?= "20060814" 73SRCDATE_opencvs ?= "20060814"
71SRCDATE_oprofile ?= "20060214" 74SRCDATE_oprofile ?= "20061011"
72SRCDATE_portaudio ?= "20060814" 75SRCDATE_portaudio ?= "20060814"
73SRCDATE_putty ?= "20060814" 76SRCDATE_putty ?= "20060814"
74SRCDATE_python-cairo ?= "20060814" 77SRCDATE_python-cairo ?= "20060814"