diff options
author | Richard Purdie <richard@openedhand.com> | 2006-11-20 17:13:43 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-11-20 17:13:43 +0000 |
commit | 4398b980ba11f6a76f6c863f67f174cf1dc2bef6 (patch) | |
tree | ef35bc5c6f898f654d942f972146b3b2161f3f30 | |
parent | 173b999d9585d61890bdabc4d26a784bc7758ec4 (diff) | |
download | poky-4398b980ba11f6a76f6c863f67f174cf1dc2bef6.tar.gz |
conf: Sync with OE
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@892 311d38ba-8fff-0310-9ca6-ca027cbcb966
24 files changed, 187 insertions, 155 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 2af2abe24d..d639e27b17 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -125,9 +125,9 @@ FILES_${PN}-dev = "${includedir} ${libdir}/lib*.so ${libdir}/*.la \ | |||
125 | /lib/*.a /lib/*.o ${datadir}/aclocal" | 125 | /lib/*.a /lib/*.o ${datadir}/aclocal" |
126 | # RRECOMMENDS_${PN}-dbg = "${PN} (>= ${PV})" | 126 | # RRECOMMENDS_${PN}-dbg = "${PN} (>= ${PV})" |
127 | RRECOMMENDS_${PN}-dbg = "${@['', '${PN} (>= ${PV})'][packaged(bb.data.getVar('PN', d, 1), d) == True]}" | 127 | RRECOMMENDS_${PN}-dbg = "${@['', '${PN} (>= ${PV})'][packaged(bb.data.getVar('PN', d, 1), d) == True]}" |
128 | FILES_${PN}-locale = "${datadir}/locale" | ||
128 | FILES_${PN}-dbg = "${bindir}/.debug ${sbindir}/.debug ${libexecdir}/.debug ${libdir}/.debug \ | 129 | FILES_${PN}-dbg = "${bindir}/.debug ${sbindir}/.debug ${libexecdir}/.debug ${libdir}/.debug \ |
129 | /bin/.debug /sbin/.debug /lib/.debug ${libdir}/${PN}/.debug" | 130 | /bin/.debug /sbin/.debug /lib/.debug ${libdir}/${PN}/.debug" |
130 | FILES_${PN}-locale = "${datadir}/locale" | ||
131 | 131 | ||
132 | # File manifest | 132 | # File manifest |
133 | 133 | ||
@@ -161,6 +161,7 @@ STAGING_LIBDIR = "${STAGING_DIR}/${HOST_SYS}/lib" | |||
161 | STAGING_INCDIR = "${STAGING_DIR}/${HOST_SYS}/include" | 161 | STAGING_INCDIR = "${STAGING_DIR}/${HOST_SYS}/include" |
162 | STAGING_DATADIR = "${STAGING_DIR}/${HOST_SYS}/share" | 162 | STAGING_DATADIR = "${STAGING_DIR}/${HOST_SYS}/share" |
163 | STAGING_LOADER_DIR = "${STAGING_DIR}/${HOST_SYS}/loader" | 163 | STAGING_LOADER_DIR = "${STAGING_DIR}/${HOST_SYS}/loader" |
164 | STAGING_FIRMWARE_DIR = "${STAGING_DIR}/${HOST_SYS}/firmware" | ||
164 | STAGING_PYDIR = "${STAGING_DIR}/lib/python2.4" | 165 | STAGING_PYDIR = "${STAGING_DIR}/lib/python2.4" |
165 | 166 | ||
166 | DEPLOY_DIR = "${TMPDIR}/deploy" | 167 | DEPLOY_DIR = "${TMPDIR}/deploy" |
@@ -193,12 +194,14 @@ IMAGE_CMD_cramfs = "mkcramfs ${IMAGE_ROOTFS} ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.r | |||
193 | IMAGE_CMD_ext2 = "genext2fs -b ${IMAGE_ROOTFS_SIZE} -d ${IMAGE_ROOTFS} ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext2 ${EXTRA_IMAGECMD}" | 194 | IMAGE_CMD_ext2 = "genext2fs -b ${IMAGE_ROOTFS_SIZE} -d ${IMAGE_ROOTFS} ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext2 ${EXTRA_IMAGECMD}" |
194 | IMAGE_CMD_ext2.gz = "mkdir ${DEPLOY_DIR_IMAGE}/tmp.gz; genext2fs -b ${IMAGE_ROOTFS_SIZE} -d ${IMAGE_ROOTFS} ${DEPLOY_DIR_IMAGE}/tmp.gz/${IMAGE_NAME}.rootfs.ext2 ${EXTRA_IMAGECMD}; gzip -f -9 ${DEPLOY_DIR_IMAGE}/tmp.gz/${IMAGE_NAME}.rootfs.ext2; mv ${DEPLOY_DIR_IMAGE}/tmp.gz/${IMAGE_NAME}.rootfs.ext2.gz ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext2.gz; rmdir ${DEPLOY_DIR_IMAGE}/tmp.gz" | 195 | IMAGE_CMD_ext2.gz = "mkdir ${DEPLOY_DIR_IMAGE}/tmp.gz; genext2fs -b ${IMAGE_ROOTFS_SIZE} -d ${IMAGE_ROOTFS} ${DEPLOY_DIR_IMAGE}/tmp.gz/${IMAGE_NAME}.rootfs.ext2 ${EXTRA_IMAGECMD}; gzip -f -9 ${DEPLOY_DIR_IMAGE}/tmp.gz/${IMAGE_NAME}.rootfs.ext2; mv ${DEPLOY_DIR_IMAGE}/tmp.gz/${IMAGE_NAME}.rootfs.ext2.gz ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext2.gz; rmdir ${DEPLOY_DIR_IMAGE}/tmp.gz" |
195 | IMAGE_CMD_squashfs = "mksquashfs ${IMAGE_ROOTFS} ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.squashfs ${EXTRA_IMAGECMD} -noappend" | 196 | IMAGE_CMD_squashfs = "mksquashfs ${IMAGE_ROOTFS} ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.squashfs ${EXTRA_IMAGECMD} -noappend" |
197 | IMAGE_CMD_squashfs-lzma = "mksquashfs-lzma ${IMAGE_ROOTFS} ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.squashfs-lzma ${EXTRA_IMAGECMD} -noappend" | ||
196 | IMAGE_CMD_tar = "cd ${IMAGE_ROOTFS} && tar -jcvf ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.tar.bz2 ." | 198 | IMAGE_CMD_tar = "cd ${IMAGE_ROOTFS} && tar -jcvf ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.tar.bz2 ." |
197 | IMAGE_CMD_tar.gz = "cd ${IMAGE_ROOTFS} && tar -zcvf ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.tar.gz ." | 199 | IMAGE_CMD_tar.gz = "cd ${IMAGE_ROOTFS} && tar -zcvf ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.tar.gz ." |
198 | IMAGE_CMD_tar.bz2 = "cd ${IMAGE_ROOTFS} && tar -jcvf ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.tar.bz2 ." | 200 | IMAGE_CMD_tar.bz2 = "cd ${IMAGE_ROOTFS} && tar -jcvf ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.tar.bz2 ." |
199 | EXTRA_IMAGECMD = "" | 201 | EXTRA_IMAGECMD = "" |
200 | EXTRA_IMAGECMD_jffs2 = "--pad --little-endian --eraseblock=0x40000" | 202 | EXTRA_IMAGECMD_jffs2 = "--pad --little-endian --eraseblock=0x40000" |
201 | EXTRA_IMAGECMD_squashfs = "-le -b 16384" | 203 | EXTRA_IMAGECMD_squashfs = "-le -b 16384" |
204 | EXTRA_IMAGECMD_squashfs-lzma = "-le -b 16384" | ||
202 | 205 | ||
203 | IMAGE_DEPENDS = "" | 206 | IMAGE_DEPENDS = "" |
204 | IMAGE_DEPENDS_jffs2 = "mtd-utils-native" | 207 | IMAGE_DEPENDS_jffs2 = "mtd-utils-native" |
@@ -206,6 +209,7 @@ IMAGE_DEPENDS_cramfs = "cramfs-native" | |||
206 | IMAGE_DEPENDS_ext2 = "genext2fs-native" | 209 | IMAGE_DEPENDS_ext2 = "genext2fs-native" |
207 | IMAGE_DEPENDS_ext2.gz = "genext2fs-native" | 210 | IMAGE_DEPENDS_ext2.gz = "genext2fs-native" |
208 | IMAGE_DEPENDS_squashfs = "squashfs-tools-native" | 211 | IMAGE_DEPENDS_squashfs = "squashfs-tools-native" |
212 | IMAGE_DEPENDS_squashfs-lzma = "squashfs-lzma-tools-native" | ||
209 | EXTRA_IMAGEDEPENDS = "" | 213 | EXTRA_IMAGEDEPENDS = "" |
210 | 214 | ||
211 | ################################################################## | 215 | ################################################################## |
@@ -316,7 +320,8 @@ export palmqtdir = "/opt/QtPalmtop" | |||
316 | GNU_MIRROR = "ftp://ftp.gnu.org/gnu" | 320 | GNU_MIRROR = "ftp://ftp.gnu.org/gnu" |
317 | DEBIAN_MIRROR = "ftp://ftp.debian.org/debian/pool" | 321 | DEBIAN_MIRROR = "ftp://ftp.debian.org/debian/pool" |
318 | SOURCEFORGE_MIRROR = "http://heanet.dl.sourceforge.net/sourceforge" | 322 | SOURCEFORGE_MIRROR = "http://heanet.dl.sourceforge.net/sourceforge" |
319 | GPE_MIRROR = "http://handhelds.org/pub/projects/gpe/source" | 323 | GPE_MIRROR = "http://gpe.linuxtogo.org/download/source" |
324 | GPE_SVN = "svn://projects.linuxtogo.org/svn/gpe/trunk/base;module=${PN}" | ||
320 | XLIBS_MIRROR = "http://xlibs.freedesktop.org/release" | 325 | XLIBS_MIRROR = "http://xlibs.freedesktop.org/release" |
321 | XORG_MIRROR = "http://xorg.freedesktop.org/releases" | 326 | XORG_MIRROR = "http://xorg.freedesktop.org/releases" |
322 | GNOME_MIRROR = "http://ftp.gnome.org/pub/GNOME/sources" | 327 | GNOME_MIRROR = "http://ftp.gnome.org/pub/GNOME/sources" |
@@ -357,7 +362,7 @@ MKTEMPCMD = "mktemp -q ${TMPBASE}" | |||
357 | # a RCS, which freaks out those special folks with active Perforce clients | 362 | # a RCS, which freaks out those special folks with active Perforce clients |
358 | # the following makes patch ignore RCS: | 363 | # the following makes patch ignore RCS: |
359 | 364 | ||
360 | export PATCH_GET=0 | 365 | export PATCH_GET="0" |
361 | 366 | ||
362 | # Program to be used to build ipkg packages | 367 | # Program to be used to build ipkg packages |
363 | 368 | ||
diff --git a/meta/conf/distro/angstrom-2007.1.conf b/meta/conf/distro/angstrom-2007.1.conf index 327d4123cc..f593194ba6 100644 --- a/meta/conf/distro/angstrom-2007.1.conf +++ b/meta/conf/distro/angstrom-2007.1.conf | |||
@@ -6,52 +6,87 @@ | |||
6 | #@MAINTAINER: Michael 'Mickey' Lauer <mickey@Vanille.de> | 6 | #@MAINTAINER: Michael 'Mickey' Lauer <mickey@Vanille.de> |
7 | #@-------------------------------------------------------------------- | 7 | #@-------------------------------------------------------------------- |
8 | 8 | ||
9 | #DISTRO_VERSION = "2006.9" | 9 | #DISTRO_VERSION = "2007.1" |
10 | DISTRO_VERSION = "test-${DATE}" | 10 | DISTRO_VERSION = "test-${DATE}" |
11 | DISTRO_REVISION = "10" | ||
11 | 12 | ||
12 | require conf/distro/include/angstrom.inc | 13 | require conf/distro/include/angstrom.inc |
13 | require conf/distro/include/sane-srcdates.inc | 14 | require conf/distro/include/sane-srcdates.inc |
14 | 15 | ||
15 | DISTRO_TYPE = "debug" | 16 | DISTRO_TYPE = "debug" |
16 | #DISTRO_TYPE = "release" | 17 | #DISTRO_TYPE = "release" |
17 | #!!!!! DON'T FORGET TO ENABLE ZAPROOTPASSWD !!!!! | ||
18 | 18 | ||
19 | #Set the right arch for the feeds | ||
20 | #Alphabetically sorted | ||
21 | |||
22 | FEED_ARCH ?= "${TARGET_ARCH}" | ||
23 | |||
24 | #armv4t machines | ||
25 | |||
26 | FEED_ARCH_ep93xx = "armv4t" | ||
27 | FEED_ARCH_h6300 = "armv4t" | ||
28 | |||
29 | #armv5t machines | ||
30 | |||
31 | FEED_ARCH_a780 = "armv5te" | ||
32 | FEED_ARCH_akita = "armv5te" | ||
33 | FEED_ARCH_c7x0 = "armv5te" | ||
34 | FEED_ARCH_h2200 = "armv5te" | ||
35 | FEED_ARCH_h4000 = "armv5te" | ||
36 | FEED_ARCH_h5xxx = "armv5te" | ||
37 | FEED_ARCH_htcuniversal = "armv5te" | ||
38 | FEED_ARCH_hx2000 = "armv5te" | ||
39 | FEED_ARCH_hx4700 = "armv5te" | ||
40 | FEED_ARCH_ixp4xx = "armv5te" | ||
41 | FEED_ARCH_magician = "armv5te" | ||
42 | FEED_ARCH_netbook-pro = "armv5te" | ||
43 | FEED_ARCH_nokia770 = "armv5te" | ||
44 | FEED_ARCH_poodle = "armv5te" | ||
45 | FEED_ARCH_spitz = "armv5te" | ||
46 | FEED_ARCH_tosa = "armv5te" | ||
47 | |||
48 | #i686 machines | ||
49 | |||
50 | FEED_ARCH_guinness = "i686" | ||
19 | 51 | ||
20 | FEED_URIS += " \ | 52 | FEED_URIS += " \ |
21 | base##${ANGSTROM_URI}/unstable/feed/base \ | 53 | no-arch##${ANGSTROM_URI}/unstable/feed/all \ |
22 | perl##${ANGSTROM_URI}/unstable/feed/perl \ | 54 | base##${ANGSTROM_URI}/unstable/feed/${FEED_ARCH}/base \ |
23 | python##${ANGSTROM_URI}/unstable/feed/python \ | 55 | perl##${ANGSTROM_URI}/unstable/feed/${FEED_ARCH}/perl \ |
24 | debug##${ANGSTROM_URI}/unstable/feed/debug \ | 56 | python##${ANGSTROM_URI}/unstable/feed/${FEED_ARCH}/python \ |
25 | ${MACHINE}##${ANGSTROM_URI}/unstable/feed/machine/${MACHINE}" | 57 | debug##${ANGSTROM_URI}/unstable/feed/${FEED_ARCH}/debug \ |
26 | # base##${ANGSTROM_URI}/releases/${DISTRO_VERSION}/feed/base \ | 58 | ${MACHINE}##${ANGSTROM_URI}/unstable/feed/${FEED_ARCH}/machine/${MACHINE}" |
27 | # ${MACHINE}##${ANGSTROM_URI}/releases/${DISTRO_VERSION}/feed/${MACHINE} \ | 59 | # base##${ANGSTROM_URI}/releases/${DISTRO_VERSION}/feed/${FEED_ARCH}/base \ |
28 | # updates##${ANGSTROM_URI}/releases/${DISTRO_VERSION}/feed/updates" | 60 | # ${MACHINE}##${ANGSTROM_URI}/releases/${DISTRO_VERSION}/feed/${FEED_ARCH}/machine/${MACHINE} \ |
29 | 61 | # updates##${ANGSTROM_URI}/releases/${DISTRO_VERSION}/feed/${FEED_ARCH}/updates" | |
30 | #SRCDATE = "20060630" | 62 | |
31 | #SRCDATE_handhelds-pxa-2.6 = "20060622" | 63 | |
64 | # We will lock down a SRCDATE when we go into release mode | ||
65 | #SRCDATE = "20061029" | ||
66 | |||
67 | PREFERRED_VERSION_linux-handhelds-2.6 = "2.6.16-hh7" | ||
68 | PREFERRED_VERSION_linux-handhelds-2.6_htcuniversal = "2.6.17-hh2" | ||
69 | |||
70 | |||
32 | SRCDATE_gconf-dbus = "20060719" | 71 | SRCDATE_gconf-dbus = "20060719" |
33 | SRCDATE_gnome-vfs-dbus = "20060803" | 72 | SRCDATE_gnome-vfs-dbus = "20060803" |
34 | 73 | ||
35 | PREFERRED_VERSION_qemu-native = "0.8.2" | ||
36 | |||
37 | CVS_TARBALL_STASH = "\ | 74 | CVS_TARBALL_STASH = "\ |
38 | http://ewi546.ewi.utwente.nl/mirror/www.openzaurus.org/official/unstable/3.5.4/sources/ \ | 75 | http://ewi546.ewi.utwente.nl/mirror/www.openzaurus.org/official/unstable/3.5.4/sources/ \ |
39 | http://www.oesources.org/source/current/" | 76 | " |
40 | |||
41 | # Opie | ||
42 | #use 1337 mt version of opie to have a webbrowser | ||
43 | PALMTOP_USE_MULTITHREADED_QT = "yes" | ||
44 | QTE_VERSION = "2.3.10" | ||
45 | OPIE_VERSION = "1.2.2" | ||
46 | require conf/distro/include/preferred-opie-versions.inc | ||
47 | 77 | ||
48 | # GPE | 78 | # GPE |
49 | require conf/distro/include/preferred-gpe-versions-2.8.inc | 79 | require conf/distro/include/preferred-gpe-versions-2.8.inc |
50 | 80 | ||
51 | PREFERRED_PROVIDER_dbus-glib = "dbus-glib" | 81 | PREFERRED_PROVIDER_dbus-glib = "dbus-glib" |
82 | PREFERRED_PROVIDER_virtual/libsdl ?= "libsdl-x11" | ||
83 | PREFERRED_PROVIDER_virtual/libxine ?= "libxine-x11" | ||
84 | |||
52 | 85 | ||
53 | PREFERRED_VERSION_fontconfig = "2.3.95" | 86 | PREFERRED_VERSION_fontconfig = "2.3.95" |
54 | PREFERRED_VERSION_freetype = "2.2.1" | 87 | PREFERRED_VERSION_freetype = "2.2.1" |
88 | #fix screen corruption issues | ||
89 | PREFERRED_VERSION_cairo = "1.3.2" | ||
55 | 90 | ||
56 | #Small machines prefer kdrive, but we might ship full Xorg in other images | 91 | #Small machines prefer kdrive, but we might ship full Xorg in other images |
57 | PREFERRED_PROVIDER_virtual/xserver ?= "xserver-kdrive" | 92 | PREFERRED_PROVIDER_virtual/xserver ?= "xserver-kdrive" |
@@ -59,7 +94,8 @@ PREFERRED_PROVIDER_xserver ?= "xserver-kdrive" | |||
59 | 94 | ||
60 | require conf/distro/include/preferred-xorg-versions-X11R7.1.inc | 95 | require conf/distro/include/preferred-xorg-versions-X11R7.1.inc |
61 | 96 | ||
62 | PREFERRED_VERSION_xserver-kdrive = "1.1.0+git${SRCDATE}" | 97 | PREFERRED_VERSION_xserver-kdrive = "X11R7.1-1.1.0" |
98 | PREFERRED_VERSION_gtk+ = "2.10.6" | ||
63 | 99 | ||
64 | #zap extra stuff taking place in $MACHINE.conf | 100 | #zap extra stuff taking place in $MACHINE.conf |
65 | GPE_EXTRA_INSTALL = "" | 101 | GPE_EXTRA_INSTALL = "" |
@@ -78,41 +114,49 @@ PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}gcc-initial:gcc-cross-initial" | |||
78 | PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}gcc:gcc-cross" | 114 | PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}gcc:gcc-cross" |
79 | PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}g++:gcc-cross" | 115 | PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}g++:gcc-cross" |
80 | 116 | ||
81 | # Libc/uclibc: | ||
82 | #fix some iconv issues, needs to be adjusted when doing uclibc builds | ||
83 | PREFERRED_PROVIDER_virtual/libiconv ?= glibc | ||
84 | PREFERRED_PROVIDER_virtual/libintl ?= glibc | ||
85 | |||
86 | # Virtuals: | 117 | # Virtuals: |
87 | PREFERRED_PROVIDER_virtual/db ?= "db" | 118 | PREFERRED_PROVIDER_virtual/db ?= "db" |
88 | PREFERRED_PROVIDER_virtual/db-native ?= "db-native" | 119 | PREFERRED_PROVIDER_virtual/db-native ?= "db-native" |
89 | PREFERRED_PROVIDER_virtual/xserver ?= xserver-kdrive | 120 | PREFERRED_PROVIDER_virtual/xserver ?= "xserver-kdrive" |
90 | 121 | ||
91 | # Others: | 122 | # Others: |
92 | PREFERRED_PROVIDER_virtual/libx11 ?= "diet-x11" | 123 | PREFERRED_PROVIDER_virtual/libx11 ?= "diet-x11" |
93 | PREFERRED_PROVIDER_gconf ?= gconf-dbus | 124 | PREFERRED_PROVIDER_gconf ?= "gconf-dbus" |
94 | PREFERRED_PROVIDER_gnome-vfs ?= gnome-vfs | 125 | PREFERRED_PROVIDER_gnome-vfs ?= "gnome-vfs" |
95 | PREFERRED_PROVIDER_tslib ?= tslib | 126 | PREFERRED_PROVIDER_tslib ?= "tslib" |
127 | PREFERRED_PROVIDER_tslib-conf ?= "tslib" | ||
96 | PREFERRED_PROVIDER_libgpewidget ?= "libgpewidget" | 128 | PREFERRED_PROVIDER_libgpewidget ?= "libgpewidget" |
97 | PREFERRED_PROVIDER_ntp = "ntp" | 129 | PREFERRED_PROVIDER_ntp = "ntp" |
98 | PREFERRED_PROVIDER_hotplug = "udev" | 130 | PREFERRED_PROVIDER_hotplug = "udev" |
99 | PREFERRED_PROVIDER_libxss = "libxss" | 131 | PREFERRED_PROVIDER_libxss = "libxss" |
100 | 132 | ||
133 | #Machine related toolchain stuff | ||
134 | ARCH_BYTE_SEX_ixp4xx = "le" | ||
135 | |||
136 | |||
101 | #EABI stuff | 137 | #EABI stuff |
102 | PREFERRED_PROVIDER_virtual/${TARGET_PREFIX}-libc-for-gcc = "glibc-intermediate" | 138 | PREFERRED_PROVIDER_virtual/${TARGET_PREFIX}-libc-for-gcc = "glibc-intermediate" |
103 | PREFERRED_PROVIDER_virtual/arm-angstrom-linux-gnueabi-libc-for-gcc = "glibc-intermediate" | 139 | PREFERRED_PROVIDER_virtual/arm-angstrom-linux-gnueabi-libc-for-gcc = "glibc-intermediate" |
104 | PREFERRED_PROVIDER_virtual/arm-linux-libc-for-gcc = "glibc-intermediate" | 140 | PREFERRED_PROVIDER_virtual/arm-linux-libc-for-gcc = "glibc-intermediate" |
105 | 141 | ||
142 | #shouldn't that be uclibc-initial???? | ||
143 | PREFERRED_PROVIDER_virtual/arm-angstrom-linux-uclibcgnueabi-libc-for-gcc = "uclibc-initial" | ||
106 | 144 | ||
107 | #use EABI toolchain | 145 | #use EABI toolchain |
108 | PREFERRED_VERSION_gcc ?= "4.1.1" | 146 | PREFERRED_VERSION_gcc ?= "4.1.1" |
109 | PREFERRED_VERSION_gcc-cross ?= "4.1.1" | 147 | PREFERRED_VERSION_gcc-cross ?= "4.1.1" |
148 | PREFERRED_VERSION_gcc-cross-sdk ?= "4.1.1" | ||
110 | PREFERRED_VERSION_gcc-cross-initial ?= "4.1.1" | 149 | PREFERRED_VERSION_gcc-cross-initial ?= "4.1.1" |
111 | PREFERRED_VERSION_binutils ?= "2.17" | 150 | |
112 | PREFERRED_VERSION_binutils-cross ?= "2.17" | 151 | PREFERRED_VERSION_binutils ?= "2.17.50.0.5" |
152 | PREFERRED_VERSION_binutils-cross ?= "2.17.50.0.5" | ||
153 | PREFERRED_VERSION_binutils-cross-sdk ?= "2.17.50.0.5" | ||
154 | |||
155 | PREFERRED_VERSION_linux-libc-headers_guinness ?= "2.6.18" | ||
113 | PREFERRED_VERSION_linux-libc-headers ?= "2.6.15.99" | 156 | PREFERRED_VERSION_linux-libc-headers ?= "2.6.15.99" |
114 | PREFERRED_VERSION_glibc ?= "2.4" | 157 | |
115 | PREFERRED_VERSION_glibc-intermediate ?= "2.4" | 158 | PREFERRED_VERSION_glibc ?= "2.5" |
159 | PREFERRED_VERSION_glibc-intermediate ?= "2.5" | ||
116 | 160 | ||
117 | # To use an EABI compatible version 3 series gcc, either uncomment | 161 | # To use an EABI compatible version 3 series gcc, either uncomment |
118 | # the lines below or set them in local.conf: | 162 | # the lines below or set them in local.conf: |
@@ -126,29 +170,21 @@ PREFERRED_VERSION_busybox = "1.2.1" | |||
126 | 170 | ||
127 | PREFERRED_VERSION_orinoco-modules_h3600 = "0.13e" | 171 | PREFERRED_VERSION_orinoco-modules_h3600 = "0.13e" |
128 | PREFERRED_VERSION_orinoco-modules_h3900 = "0.13e" | 172 | PREFERRED_VERSION_orinoco-modules_h3900 = "0.13e" |
129 | PREFERRED_VERSION_dbus ?= "0.92" | 173 | |
174 | PREFERRED_VERSION_dbus ?= "1.0.1" | ||
175 | PREFERRED_VERSION_dbus-glib ?= "0.71" | ||
176 | |||
130 | PREFERRED_VERSION_gstreamer ?= "0.10.6" | 177 | PREFERRED_VERSION_gstreamer ?= "0.10.6" |
131 | 178 | ||
132 | PREFERRED_PROVIDER_hostap-conf ?= "hostap-conf" | 179 | PREFERRED_PROVIDER_hostap-conf ?= "hostap-conf" |
133 | PREFERRED_PROVIDER_hostap-modules_h2200 ?= "hostap-modules" | 180 | PREFERRED_PROVIDER_hostap-modules_h2200 ?= "hostap-modules" |
134 | PREFERRED_PROVIDER_hostap-modules_hx4700 ?= "hostap-modules" | 181 | PREFERRED_PROVIDER_hostap-modules_hx4700 ?= "hostap-modules" |
135 | PREFERRED_VERSION_hostap-modules ?= "0.4.7" | 182 | PREFERRED_VERSION_hostap-modules ?= "0.4.7" |
183 | PREFERRED_VERSION_hostap-utils ?= "0.4.7" | ||
136 | 184 | ||
137 | #Down here we put stuff we want to install into machines without polluting conf/machine/ with distro stuff | 185 | #Down here we put stuff we want to install into machines without polluting conf/machine/ with distro stuff |
138 | # c7x0, akita, spitz, nokia770, h2200, h6300, ipaq-pxa270, simpad | 186 | # c7x0, akita, spitz, nokia770, h2200, h6300, hx4700, simpad |
139 | 187 | ||
140 | #### Bootstrap options #### | ||
141 | |||
142 | PCMCIA_MANAGER_c7x0 = "pcmciautils" | ||
143 | PCMCIA_MANAGER_akita = "pcmciautils" | ||
144 | PCMCIA_MANAGER_spitz = "pcmciautils" | ||
145 | PCMCIA_MANAGER_tosa = "pcmciautils" | ||
146 | PCMCIA_MANAGER_poodle = "pcmciautils" | ||
147 | PCMCIA_MANAGER_nokia770 = "pcmciautils" | ||
148 | PCMCIA_MANAGER_h2200 = "pcmciautils" | ||
149 | PCMCIA_MANAGER_h4000 = "pcmciautils" | ||
150 | PCMCIA_MANAGER_h6300 = "pcmciautils" | ||
151 | PCMCIA_MANAGER_ipaq-pxa270 = "pcmciautils" | ||
152 | 188 | ||
153 | # add altboot to compatible models, will be replaced with angstrom-bootmanager | 189 | # add altboot to compatible models, will be replaced with angstrom-bootmanager |
154 | #EXTRA_STUFF_append_c7x0 = "altboot" | 190 | #EXTRA_STUFF_append_c7x0 = "altboot" |
@@ -157,20 +193,27 @@ PCMCIA_MANAGER_ipaq-pxa270 = "pcmciautils" | |||
157 | #EXTRA_STUFF_append_poodle = "altboot" | 193 | #EXTRA_STUFF_append_poodle = "altboot" |
158 | #EXTRA_STUFF_append_tosa = "altboot" | 194 | #EXTRA_STUFF_append_tosa = "altboot" |
159 | 195 | ||
160 | ### GPE section ### | ||
161 | 196 | ||
162 | #Install libgtkinput in devices without a keyboard | 197 | # do some task-base stuff here |
163 | GPE_EXTRA_INSTALL_append_ipaq-pxa270 = " libgtkinput" | 198 | |
164 | GPE_EXTRA_INSTALL_append_h2200 = " libgtkinput" | 199 | # We want to ship extra debug utils in the rootfs when doing a debug build |
165 | GPE_EXTRA_INSTALL_append_h4000 = " libgtkinput" | 200 | DEBUG_APPS ?= "" |
166 | GPE_EXTRA_INSTALL_append_h6300 = " libgtkinput" | 201 | DEBUG_APPS += '${@base_conditional("DISTRO_TYPE", "release", "", "tslib-tests tslib-calibrate gdb strace procps",d)}' |
167 | GPE_EXTRA_INSTALL_append_simpad = " libgtkinput" | 202 | |
168 | GPE_EXTRA_INSTALL_append_nokia770 = " libgtkinput" | 203 | #this should go away soon |
204 | EXTRA_STUFF ?= "" | ||
169 | 205 | ||
170 | #As soon as a kill switch is in place we can add it to devices with a keyboard | ||
171 | #GPE_EXTRA_INSTALL_append_c7x0 = " libgtkinput" | ||
172 | #GPE_EXTRA_INSTALL_append_tosa = " libgtkinput" | ||
173 | #GPE_EXTRA_INSTALL_append_akita = " libgtkinput" | ||
174 | #GPE_EXTRA_INSTALL_append_spitz = " libgtkinput" | ||
175 | 206 | ||
207 | # Angstrom want to ship some extra stuff. This should be moved into task-base eventually | ||
208 | DISTRO_EXTRA_RDEPENDS = "\ | ||
209 | update-modules module-init-tools modutils-initscripts \ | ||
210 | sysvinit initscripts sysvinit-pidof \ | ||
211 | psplash \ | ||
212 | netbase dropbear \ | ||
213 | angstrom-version \ | ||
214 | ipkg ipkg-collateral \ | ||
215 | util-linux-mount util-linux-umount \ | ||
216 | ${EXTRA_STUFF} \ | ||
217 | ${DEBUG_APPS} \ | ||
218 | " | ||
176 | 219 | ||
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 @@ | |||
5 | DISTRO = "angstrom" | 5 | DISTRO = "angstrom" |
6 | DISTRO_NAME = "Angstrom" | 6 | DISTRO_NAME = "Angstrom" |
7 | 7 | ||
8 | TARGET_VENDOR = "-angstrom" | ||
9 | MACHINE_TASK_PROVIDER = "task-base" | ||
10 | |||
11 | # Can be "glibc" and "uclibc" | ||
12 | ANGSTROM_MODE ?= "glibc" | ||
13 | |||
14 | DEPLOY_DIR = "${TMPDIR}/deploy/${ANGSTROM_MODE}" | ||
15 | require 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 |
9 | ANGSTROM_URI = "http://www.angstrom-distribution.org" | 18 | ANGSTROM_URI = "http://www.angstrom-distribution.org" |
10 | 19 | ||
11 | #Set the default maintainer to angstrom-dev | 20 | #Set the default maintainer to angstrom-dev |
12 | MAINTAINER = "Angstrom Developers <angstrom-dev@linuxtogo.org>" | 21 | MAINTAINER = "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 |
16 | INHERIT += "package_ipk debian multimachine" | 25 | INHERIT += "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 |
19 | PREFERRED_PROVIDER_qemu-native = "qemu-native" | 28 | PREFERRED_PROVIDER_qemu-native = "qemu-native" |
20 | ENABLE_BINARY_LOCALE_GENERATION ?= "1" | 29 | ENABLE_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 | 32 | ENABLE_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" | ||
26 | TARGET_VENDOR = "-angstrom" | ||
27 | TARGET_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 | ||
33 | FULL_OPTIMIZATION = "-fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os" | ||
34 | BUILD_OPTIMIZATION = "-Os" | ||
35 | CXXFLAGS += "-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 :) |
38 | TARGET_FPU_arm = "soft" | 35 | #make it overridable for platforms with FPU, like ep93xx or i.mx31 |
36 | TARGET_FPU_arm ?= "soft" | ||
37 | TARGET_FPU_ixp4xx ?= "soft" | ||
38 | |||
39 | 39 | ||
40 | #Always ship these packages | 40 | #Make a LE jffs2 image |
41 | BOOTSTRAP_EXTRA_RDEPENDS += "angstrom-version coreutils dropbear sysvinit" | 41 | SLUGOS_IMAGESEX = "little-endian" |
42 | 42 | ||
43 | #Name the generated images in a sane way | 43 | #Name the generated images in a sane way |
44 | IMAGE_NAME = "${DISTRO_NAME}-${IMAGE_BASENAME}-${DISTRO_VERSION}-${MACHINE}" | 44 | IMAGE_NAME = "${DISTRO_NAME}-${IMAGE_BASENAME}-${DISTRO_VERSION}-${MACHINE}" |
45 | DEPLOY_DIR_IMAGE = ${DEPLOY_DIR}/images/${MACHINE} | 45 | DEPLOY_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 |
48 | DISTRO_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')}" | 48 | DISTRO_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) |
51 | DISTO_FEATURES = "nfs smbfs ipsec wifi ppp alsa bluetooth ext2 irda pcmcia usbgadget usbhost" | 51 | DISTRO_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 @@ | |||
1 | PREFERRED_PROVIDER_gconf = "gconf-osso" | ||
2 | PREFERRED_PROVIDER_tslib = "tslib-maemo" | ||
3 | PREFERRED_VERSION_dbus = "0.23.1-osso5" | ||
4 | PREFERRED_VERSION_audiofile = "0.2.6-3osso4" | ||
5 | PREFERRED_PROVIDER_esd = "osso-esd" | ||
6 | PREFERRED_VERSION_gtk+ = "2.6.4-1.osso7" | ||
7 | PREFERRED_VERSION_glib-2.0 = "2.6.4" | ||
8 | PREFERRED_VERSION_pango = "1.8.1" | ||
9 | PREFERRED_VERSION_atk = "1.9.0" | ||
10 | PREFERRED_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" | |||
22 | INHERIT += "sanity" | 22 | INHERIT += "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) |
25 | DISTO_FEATURES = "nfs smbfs ipsec wifi ppp alsa bluetooth ext2 irda pcmcia usbgadget usbhost" | 25 | DISTRO_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: |
9 | PREFERRED_PROVIDER_gconf=gconf-dbus | 9 | PREFERRED_PROVIDER_gconf="gconf-dbus" |
10 | PREFERRED_PROVIDER_gnome-vfs=gnome-vfs-dbus | 10 | PREFERRED_PROVIDER_gnome-vfs="gnome-vfs-dbus" |
11 | 11 | ||
12 | #specify versions, as the header says :) | 12 | #specify versions, as the header says :) |
13 | PREFERRED_VERSION_libmatchbox ?= "1.7" | 13 | PREFERRED_VERSION_libmatchbox ?= "1.7" |
@@ -20,9 +20,9 @@ PREFERRED_VERSION_matchbox-applet-inputmanager ?= "0.6" | |||
20 | PREFERRED_VERSION_atk ?= "1.9.0" | 20 | PREFERRED_VERSION_atk ?= "1.9.0" |
21 | PREFERRED_VERSION_cairo ?= "0.5.2" | 21 | PREFERRED_VERSION_cairo ?= "0.5.2" |
22 | PREFERRED_VERSION_glib-2.0 ?= "2.6.4" | 22 | PREFERRED_VERSION_glib-2.0 ?= "2.6.4" |
23 | PREFERRED_VERSION_pango ?= "1.8.2" | ||
23 | PREFERRED_VERSION_gtk+ ?= "2.6.10" | 24 | PREFERRED_VERSION_gtk+ ?= "2.6.10" |
24 | PREFERRED_VERSION_gtk-engines ?= "2.6.5" | 25 | PREFERRED_VERSION_gtk-engines ?= "2.6.5" |
25 | PREFERRED_VERSION_pango ?= "1.8.1" | ||
26 | PREFERRED_VERSION_librsvg ?= "2.6.5" | 26 | PREFERRED_VERSION_librsvg ?= "2.6.5" |
27 | PREFERRED_VERSION_libgpewidget ?= "0.109" | 27 | PREFERRED_VERSION_libgpewidget ?= "0.109" |
28 | PREFERRED_VERSION_libgpepimc ?= "0.5" | 28 | PREFERRED_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 | |||
12 | PREFERRED_PROVIDER_virtual/libqpe1 = "libqpe-opie" | 12 | PREFERRED_PROVIDER_virtual/libqpe1 = "libqpe-opie" |
13 | PREFERRED_VERSION_qte-mt = "${QTE_VERSION}" | 13 | PREFERRED_VERSION_qte-mt = "${QTE_VERSION}" |
14 | PREFERRED_VERSION_qte = "${QTE_VERSION}" | 14 | PREFERRED_VERSION_qte = "${QTE_VERSION}" |
15 | PREFERRED_VERSION_libopie2 = "${OPIE_VERSION}" | 15 | PREFERRED_VERSION_libopie2 ?= "${OPIE_VERSION}" |
16 | PREFERRED_VERSION_libopieobex0 = "${OPIE_VERSION}" | 16 | PREFERRED_VERSION_libopieobex0 = "${OPIE_VERSION}" |
17 | PREFERRED_VERSION_libopietooth1 = "${OPIE_VERSION}" | 17 | PREFERRED_VERSION_libopietooth1 = "${OPIE_VERSION}" |
18 | PREFERRED_VERSION_libqpe-opie = "${OPIE_VERSION}" | 18 | PREFERRED_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" | |||
5 | SRCDATE_prism54-module ?= "20060814" | 5 | SRCDATE_prism54-module ?= "20060814" |
6 | 6 | ||
7 | # X11 libs, extentions and protos | 7 | # X11 libs, extentions and protos |
8 | SRCDATE_xcalibrate ?= "20060804" | ||
9 | SRCDATE_compositeext ?= "20060814" | 8 | SRCDATE_compositeext ?= "20060814" |
10 | SRCDATE_drm ?= "20060814" | 9 | SRCDATE_drm ?= "20060814" |
11 | SRCDATE_drm-kernel ?= "20060814" | 10 | SRCDATE_drm-kernel ?= "20060814" |
@@ -22,8 +21,10 @@ SRCDATE_xxf86vmext ?= "20060814" | |||
22 | # Matchbox / O-hand | 21 | # Matchbox / O-hand |
23 | SRCDATE_contacts ?= "20060707" | 22 | SRCDATE_contacts ?= "20060707" |
24 | SRCDATE_dates ?= "20060707" | 23 | SRCDATE_dates ?= "20060707" |
25 | SRCDATE_web ?= "20060613" | 24 | SRCDATE_fstests ?= "20061111" |
26 | SRCDATE_eds-dbus ?= "20060707" | 25 | SRCDATE_eds-dbus ?= "20060707" |
26 | SRCDATE_libmatchbox ?= "20060612" | ||
27 | SRCDATE_libfakekey ?= "20051101" | ||
27 | SRCDATE_matchbox-common ?= "20060612" | 28 | SRCDATE_matchbox-common ?= "20060612" |
28 | SRCDATE_matchbox-config-gtk ?= "20060612" | 29 | SRCDATE_matchbox-config-gtk ?= "20060612" |
29 | SRCDATE_matchbox-desktop ?= "20060612" | 30 | SRCDATE_matchbox-desktop ?= "20060612" |
@@ -33,13 +34,14 @@ SRCDATE_matchbox-panel-manager ?= "20060612" | |||
33 | SRCDATE_matchbox-stroke ?= "20060612" | 34 | SRCDATE_matchbox-stroke ?= "20060612" |
34 | SRCDATE_matchbox-themes-extra ?= "20060612" | 35 | SRCDATE_matchbox-themes-extra ?= "20060612" |
35 | SRCDATE_matchbox-wm ?= "20060612" | 36 | SRCDATE_matchbox-wm ?= "20060612" |
36 | SRCDATE_libmatchbox ?= "20060612" | 37 | SRCDATE_psplash ?= "20061011" |
37 | SRCDATE_libfakekey ?= "20051101" | 38 | SRCDATE_web ?= "20060613" |
38 | SRCDATE_zaurusd ?= "20060628" | 39 | SRCDATE_zaurusd ?= "20060628" |
39 | 40 | ||
40 | # GPE | 41 | # GPE |
41 | SRCDATE_dasher-gpe ?= "20060814" | 42 | SRCDATE_dasher-gpe ?= "20060814" |
42 | SRCDATE_rosetta ?= "20060804" | 43 | SRCDATE_rosetta ?= "20060804" |
44 | SRCDATE_libmimedir ?= "20060804" | ||
43 | 45 | ||
44 | # GNOME | 46 | # GNOME |
45 | SRCDATE_gconf-dbus ?= "20060719" | 47 | SRCDATE_gconf-dbus ?= "20060719" |
@@ -54,12 +56,13 @@ SRCDATE_dvbtraffic ?= "20060814" | |||
54 | SRCDATE_dvbtune ?= "20060814" | 56 | SRCDATE_dvbtune ?= "20060814" |
55 | SRCDATE_fdclock ?= "20060814" | 57 | SRCDATE_fdclock ?= "20060814" |
56 | SRCDATE_fltk ?= "20060814" | 58 | SRCDATE_fltk ?= "20060814" |
59 | SRCDATE_ipatience ?= "20061112" | ||
57 | SRCDATE_ipkg-link ?= "20050930" | 60 | SRCDATE_ipkg-link ?= "20050930" |
58 | SRCDATE_ipkg-link-1 ?= "20050930" | 61 | SRCDATE_ipkg-link-1 ?= "20050930" |
59 | SRCDATE_ipkg-utils ?= "20050930" | 62 | SRCDATE_ipkg-utils ?= "20050930" |
60 | SRCDATE_ipkg-utils-native ?= "20050930" | 63 | SRCDATE_ipkg-utils-native ?= "20050930" |
61 | SRCDATE_kaffe-qt ?= "20060814" | 64 | SRCDATE_kaffe-qt ?= "20060814" |
62 | SRCDATE_kbdd ?= "20060814" | 65 | SRCDATE_kbdd ?= "20061019" |
63 | SRCDATE_led ?= "20060814" | 66 | SRCDATE_led ?= "20060814" |
64 | SRCDATE_linux-input ?= "20060814" | 67 | SRCDATE_linux-input ?= "20060814" |
65 | SRCDATE_madwifi-modules ?= "20060814" | 68 | SRCDATE_madwifi-modules ?= "20060814" |
@@ -68,7 +71,7 @@ SRCDATE_minimo ?= "20050401" | |||
68 | SRCDATE_mystun-server ?= "20060814" | 71 | SRCDATE_mystun-server ?= "20060814" |
69 | SRCDATE_olsrd ?= "20060814" | 72 | SRCDATE_olsrd ?= "20060814" |
70 | SRCDATE_opencvs ?= "20060814" | 73 | SRCDATE_opencvs ?= "20060814" |
71 | SRCDATE_oprofile ?= "20060214" | 74 | SRCDATE_oprofile ?= "20061011" |
72 | SRCDATE_portaudio ?= "20060814" | 75 | SRCDATE_portaudio ?= "20060814" |
73 | SRCDATE_putty ?= "20060814" | 76 | SRCDATE_putty ?= "20060814" |
74 | SRCDATE_python-cairo ?= "20060814" | 77 | SRCDATE_python-cairo ?= "20060814" |
diff --git a/meta/conf/distro/openzaurus-unstable.conf b/meta/conf/distro/openzaurus-unstable.conf index 43492944ff..10f00b7604 100644 --- a/meta/conf/distro/openzaurus-unstable.conf +++ b/meta/conf/distro/openzaurus-unstable.conf | |||
@@ -8,8 +8,7 @@ DISTRO_VERSION = ".dev-snapshot-${DATE}" | |||
8 | 8 | ||
9 | CVS_TARBALL_STASH = "\ | 9 | CVS_TARBALL_STASH = "\ |
10 | http://ewi546.ewi.utwente.nl/mirror/www.openzaurus.org/official/unstable/3.5.4/sources/ \ | 10 | http://ewi546.ewi.utwente.nl/mirror/www.openzaurus.org/official/unstable/3.5.4/sources/ \ |
11 | http://www.oesources.org/source/current/" | 11 | " |
12 | |||
13 | 12 | ||
14 | require conf/distro/include/sane-srcdates.inc | 13 | require conf/distro/include/sane-srcdates.inc |
15 | require conf/distro/include/openzaurus.inc | 14 | require conf/distro/include/openzaurus.inc |
@@ -34,7 +33,7 @@ SRCDATE ?= "20060701" | |||
34 | ASSUME_PROVIDED += "virtual/arm-linux-gcc-2.95" | 33 | ASSUME_PROVIDED += "virtual/arm-linux-gcc-2.95" |
35 | PREFERRED_PROVIDER_hostap-conf = "hostap-conf" | 34 | PREFERRED_PROVIDER_hostap-conf = "hostap-conf" |
36 | PREFERRED_PROVIDER_task-bootstrap = "task-bootstrap" | 35 | PREFERRED_PROVIDER_task-bootstrap = "task-bootstrap" |
37 | PREFERRED_PROVIDER_tslib ?= tslib | 36 | PREFERRED_PROVIDER_tslib ?= "tslib" |
38 | 37 | ||
39 | KERNEL_CONSOLE = "ttyS0" | 38 | KERNEL_CONSOLE = "ttyS0" |
40 | #DEBUG_OPTIMIZATION = "-O -g3" | 39 | #DEBUG_OPTIMIZATION = "-O -g3" |
@@ -52,8 +51,13 @@ PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc-initial:gcc-cross-initial" | |||
52 | PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc:gcc-cross" | 51 | PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc:gcc-cross" |
53 | PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}g++:gcc-cross" | 52 | PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}g++:gcc-cross" |
54 | 53 | ||
55 | PREFERRED_VERSION_binutils-cross = "2.15.94.0.1" | 54 | PREFERRED_VERSION_binutils-cross = "2.16" |
56 | PREFERRED_VERSION_binutils = "2.15.94.0.1" | 55 | PREFERRED_VERSION_binutils = "2.16" |
56 | |||
57 | PREFERRED_VERSION_glibc = "2.3.5+cvs20050627" | ||
58 | PREFERRED_VERSION_gcc = "3.4.4" | ||
59 | PREFERRED_VERSION_gcc-cross = "3.4.4" | ||
60 | PREFERRED_VERSION_gcc-cross-initial = "3.4.4" | ||
57 | 61 | ||
58 | # | 62 | # |
59 | # Opie | 63 | # Opie |
diff --git a/meta/conf/distro/poky.conf b/meta/conf/distro/poky.conf index bbf8d940ad..82edf8d8fa 100644 --- a/meta/conf/distro/poky.conf +++ b/meta/conf/distro/poky.conf | |||
@@ -13,10 +13,11 @@ PACKAGE_CLASSES ?= "package_ipk" | |||
13 | INHERIT += " ${PACKAGE_CLASSES} debian multimachine poky devshell " | 13 | INHERIT += " ${PACKAGE_CLASSES} debian multimachine poky devshell " |
14 | # For some reason, this doesn't work | 14 | # For some reason, this doesn't work |
15 | # TARGET_OS ?= "linux" | 15 | # TARGET_OS ?= "linux" |
16 | # TARGET_VENDOR = "-poky" | ||
16 | TARGET_OS = "linux" | 17 | TARGET_OS = "linux" |
17 | TARGET_FPU_arm ?= "soft" | 18 | TARGET_FPU_arm ?= "soft" |
18 | TARGET_FPU_armeb ?= "soft" | 19 | TARGET_FPU_armeb ?= "soft" |
19 | IMAGE_ROOTFS_SIZE_ext2 ?= 131072 | 20 | IMAGE_ROOTFS_SIZE_ext2 ?= "131072" |
20 | 21 | ||
21 | PARALLEL_INSTALL_MODULES = "1" | 22 | PARALLEL_INSTALL_MODULES = "1" |
22 | 23 | ||
@@ -50,8 +51,8 @@ PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}g++:gcc-cross" | |||
50 | 51 | ||
51 | # Libc/uclibc: | 52 | # Libc/uclibc: |
52 | #fix some iconv issues, needs to be adjusted when doing uclibc builds | 53 | #fix some iconv issues, needs to be adjusted when doing uclibc builds |
53 | PREFERRED_PROVIDER_virtual/libiconv ?= glibc | 54 | PREFERRED_PROVIDER_virtual/libiconv ?= "glibc" |
54 | PREFERRED_PROVIDER_virtual/libintl ?= glibc | 55 | PREFERRED_PROVIDER_virtual/libintl ?= "glibc" |
55 | 56 | ||
56 | # Virtuals: | 57 | # Virtuals: |
57 | PREFERRED_PROVIDER_virtual/db ?= "db" | 58 | PREFERRED_PROVIDER_virtual/db ?= "db" |
@@ -62,9 +63,9 @@ PREFERRED_PROVIDER_virtual/update-alternatives-native ?= update-alternatives-cwo | |||
62 | 63 | ||
63 | # Others: | 64 | # Others: |
64 | PREFERRED_PROVIDER_libx11 ?= "diet-x11" | 65 | PREFERRED_PROVIDER_libx11 ?= "diet-x11" |
65 | PREFERRED_PROVIDER_gconf ?= gconf-dbus | 66 | PREFERRED_PROVIDER_gconf ?= "gconf-dbus" |
66 | PREFERRED_PROVIDER_gnome-vfs ?= gnome-vfs-dbus | 67 | PREFERRED_PROVIDER_gnome-vfs ?= "gnome-vfs-dbus" |
67 | PREFERRED_PROVIDER_tslib ?= tslib | 68 | PREFERRED_PROVIDER_tslib ?= "tslib" |
68 | 69 | ||
69 | 70 | ||
70 | # | 71 | # |
diff --git a/meta/conf/documentation.conf b/meta/conf/documentation.conf index 699ac216eb..62622ea255 100644 --- a/meta/conf/documentation.conf +++ b/meta/conf/documentation.conf | |||
@@ -1,6 +1,6 @@ | |||
1 | # this file holds documentation for known keys, possible values and | 1 | # this file holds documentation for known keys, possible values and |
2 | # their meaning. Please update, correct and extend this documentation. | 2 | # their meaning. Please update, correct and extend this documentation. |
3 | # Mail your changes to oe@handhelds.org | 3 | # Mail your changes to openembedded-devel@openembedded.org |
4 | 4 | ||
5 | # conf/bitbake.conf | 5 | # conf/bitbake.conf |
6 | PREFERRED_VERSION[doc] = 'Normally use it as PREFERRED_VERSION_package-name = "" to set the preferred \ | 6 | PREFERRED_VERSION[doc] = 'Normally use it as PREFERRED_VERSION_package-name = "" to set the preferred \ |
@@ -57,7 +57,7 @@ PRIORITY[doc] = "Importance of package, default values are 'optional' or 'needed | |||
57 | DESCRIPTION[doc] = "A small description of the package." | 57 | DESCRIPTION[doc] = "A small description of the package." |
58 | LICENSE[doc] = "The license of the resulting package e.g. GPL" | 58 | LICENSE[doc] = "The license of the resulting package e.g. GPL" |
59 | AUTHOR[doc] = "The author of the files installed." | 59 | AUTHOR[doc] = "The author of the files installed." |
60 | MAINTAINER[doc] = "Maintainer of the .bb file and the resulting package." | 60 | MAINTAINER[doc] = "Distributions can put this in their .conf file to add their contact information into packages, this is not valid inside recipes" |
61 | HOMEPAGE[doc] = "Homepage of the package e.g. http://www.project.net." | 61 | HOMEPAGE[doc] = "Homepage of the package e.g. http://www.project.net." |
62 | 62 | ||
63 | 63 | ||
diff --git a/meta/conf/machine/akita.conf b/meta/conf/machine/akita.conf index 0b0caebb3c..27695be4bb 100644 --- a/meta/conf/machine/akita.conf +++ b/meta/conf/machine/akita.conf | |||
@@ -3,7 +3,7 @@ | |||
3 | #@DESCRIPTION: Machine configuration for the Sharp Zaurus SL-C1000 device | 3 | #@DESCRIPTION: Machine configuration for the Sharp Zaurus SL-C1000 device |
4 | 4 | ||
5 | include conf/machine/include/zaurus-clamshell.conf | 5 | include conf/machine/include/zaurus-clamshell.conf |
6 | include conf/machine/include/zaurus-clamshell-2.6.conf | 6 | include conf/machine/include/zaurus-2.6.conf |
7 | 7 | ||
8 | PACKAGE_EXTRA_ARCHS += "iwmmxt" | 8 | PACKAGE_EXTRA_ARCHS += "iwmmxt" |
9 | IMAGE_FSTYPES ?= "jffs2" | 9 | IMAGE_FSTYPES ?= "jffs2" |
diff --git a/meta/conf/machine/c7x0.conf b/meta/conf/machine/c7x0.conf index 4b1d8edb80..893378f569 100644 --- a/meta/conf/machine/c7x0.conf +++ b/meta/conf/machine/c7x0.conf | |||
@@ -3,7 +3,7 @@ | |||
3 | #@DESCRIPTION: Machine configuration for the Sharp Zaurus SL-C700, Sharp Zaurus SL-C750, Sharp Zaurus SL-C760, Sharp Zaurus SL-C860 devices | 3 | #@DESCRIPTION: Machine configuration for the Sharp Zaurus SL-C700, Sharp Zaurus SL-C750, Sharp Zaurus SL-C760, Sharp Zaurus SL-C860 devices |
4 | 4 | ||
5 | include conf/machine/include/zaurus-clamshell.conf | 5 | include conf/machine/include/zaurus-clamshell.conf |
6 | include conf/machine/include/zaurus-clamshell-2.6.conf | 6 | include conf/machine/include/zaurus-2.6.conf |
7 | 7 | ||
8 | IMAGE_FSTYPES ?= "jffs2" | 8 | IMAGE_FSTYPES ?= "jffs2" |
9 | 9 | ||
diff --git a/meta/conf/machine/include/ixp4xx.conf b/meta/conf/machine/include/ixp4xx.conf index e545bbc1c0..190ebe1c8c 100644 --- a/meta/conf/machine/include/ixp4xx.conf +++ b/meta/conf/machine/include/ixp4xx.conf | |||
@@ -141,28 +141,12 @@ PACKAGE_EXTRA_ARCHS = "ixp4xx ${MACHINE} \ | |||
141 | bb.data.getVar('THUMB_INTERWORK', d, 1) == 'yes')} \ | 141 | bb.data.getVar('THUMB_INTERWORK', d, 1) == 'yes')} \ |
142 | ${MACHINE_ARCH} ${MACHINE}${ARCH_BYTE_SEX}" | 142 | ${MACHINE_ARCH} ${MACHINE}${ARCH_BYTE_SEX}" |
143 | 143 | ||
144 | # PACKAGE_ARCH_LIST [not used] | 144 | # IPKG_ARCH_LIST [not used] |
145 | # This is used to override the ipkgarchs settings in rootfs_ipk.bbclass, allowing | 145 | # This is used to override the ipkgarchs settings in rootfs_ipk.bbclass, allowing |
146 | # the removal of the raw "${MACHINE}" from the end of the list. ${MACHINE} and | 146 | # the removal of the raw "${MACHINE}" from the end of the list. ${MACHINE} and |
147 | # ixp4xx are included at the start (lower priority) as the non-byte-sex specific | 147 | # ixp4xx are included at the start (lower priority) as the non-byte-sex specific |
148 | # versions. | 148 | # versions. |
149 | PACKAGE_ARCH_LIST = "all any noarch ixp4xx ${MACHINE} ${PACKAGE_EXTRA_ARCHS}" | 149 | IPKG_ARCH_LIST = "all any noarch ixp4xx ${MACHINE} ${PACKAGE_EXTRA_ARCHS}" |
150 | |||
151 | #------------------------------------------------------------------------------- | ||
152 | # Package versions | ||
153 | #------------------------------------------------------------------------------- | ||
154 | # Warning: these are shared across the different machine and distro | ||
155 | # configurations but can be overridden therein if required. | ||
156 | SRCDATE_ipkg-utils ?= "20060106" | ||
157 | SRCDATE_ipkg-utils-native ?= "20060106" | ||
158 | SRCDATE_ipkg-link ?= "20060106" | ||
159 | SRCDATE_irssi ?= "20050930" | ||
160 | |||
161 | CVS_TARBALL_STASH = "http://sources.nslu2-linux.org/sources/" | ||
162 | INHERIT += "nslu2-mirrors" | ||
163 | |||
164 | PREFERRED_VERSION_ipkg ?= "0.99.154" | ||
165 | PREFERRED_VERSION_ipkg-native ?= "0.99.154" | ||
166 | 150 | ||
167 | #------------------------------------------------------------------------------- | 151 | #------------------------------------------------------------------------------- |
168 | # Board defaults | 152 | # Board defaults |
diff --git a/meta/conf/machine/include/poodle-2.6.conf b/meta/conf/machine/include/poodle-2.6.conf index eff0ad4c7c..01a06b7c27 100644 --- a/meta/conf/machine/include/poodle-2.6.conf +++ b/meta/conf/machine/include/poodle-2.6.conf | |||
@@ -1 +1 @@ | |||
require conf/machine/include/zaurus-clamshell-2.6.conf | require conf/machine/include/zaurus-2.6.conf | ||
diff --git a/meta/conf/machine/include/qemu.conf b/meta/conf/machine/include/qemu.conf index c896c38f57..83ddf24b87 100644 --- a/meta/conf/machine/include/qemu.conf +++ b/meta/conf/machine/include/qemu.conf | |||
@@ -1,6 +1,7 @@ | |||
1 | PCMCIA_MANAGER = "pcmciautils" | 1 | PCMCIA_MANAGER = "pcmciautils" |
2 | PREFERRED_PROVIDER_xserver = "xserver-kdrive" | 2 | PREFERRED_PROVIDER_xserver = "xserver-kdrive" |
3 | GUI_MACHINE_CLASS = "bigscreen" | 3 | GUI_MACHINE_CLASS = "bigscreen" |
4 | GPE_EXTRA_INSTALL += "gaim sylpheed" | ||
4 | 5 | ||
5 | MACHINE_FEATURES = "kernel26 apm alsa pcmcia bluetooth irda usbgadget" | 6 | MACHINE_FEATURES = "kernel26 apm alsa pcmcia bluetooth irda usbgadget" |
6 | 7 | ||
diff --git a/meta/conf/machine/include/tosa-2.6.conf b/meta/conf/machine/include/tosa-2.6.conf index 6831b0ea91..f3591b4b75 100644 --- a/meta/conf/machine/include/tosa-2.6.conf +++ b/meta/conf/machine/include/tosa-2.6.conf | |||
@@ -1,4 +1,4 @@ | |||
1 | include conf/machine/include/zaurus-clamshell-2.6.conf | 1 | include conf/machine/include/zaurus-2.6.conf |
2 | # wlan-ng Modules | 2 | # wlan-ng Modules |
3 | MACHINE_EXTRA_RDEPENDS += "wlan-ng-modules-usb" | 3 | MACHINE_EXTRA_RDEPENDS += "wlan-ng-modules-usb" |
4 | 4 | ||
diff --git a/meta/conf/machine/include/tune-arm920t.conf b/meta/conf/machine/include/tune-arm920t.conf index 992f1923c6..373bf46727 100644 --- a/meta/conf/machine/include/tune-arm920t.conf +++ b/meta/conf/machine/include/tune-arm920t.conf | |||
@@ -1,3 +1,3 @@ | |||
1 | PACKAGE_ARCH = "armv4t" | 1 | PACKAGE_ARCH = "armv4t" |
2 | TARGET_CC_ARCH = "-march=armv4t -mtune=arm920t -mcpu=arm920t" | 2 | TARGET_CC_ARCH = "-march=armv4t -mtune=arm920t" |
3 | 3 | ||
diff --git a/meta/conf/machine/include/tune-arm9tdmi.conf b/meta/conf/machine/include/tune-arm9tdmi.conf index cfc3bad1c1..d097b07739 100644 --- a/meta/conf/machine/include/tune-arm9tdmi.conf +++ b/meta/conf/machine/include/tune-arm9tdmi.conf | |||
@@ -1 +1,2 @@ | |||
1 | PACKAGE_ARCH = "armv4t" | ||
1 | TARGET_CC_ARCH = "-mcpu=arm9tdmi -mtune=arm9tdmi" | 2 | TARGET_CC_ARCH = "-mcpu=arm9tdmi -mtune=arm9tdmi" |
diff --git a/meta/conf/machine/include/tune-iwmmxt.conf b/meta/conf/machine/include/tune-iwmmxt.conf index f9c8e7f5cf..8376faca74 100644 --- a/meta/conf/machine/include/tune-iwmmxt.conf +++ b/meta/conf/machine/include/tune-iwmmxt.conf | |||
@@ -1,6 +1,6 @@ | |||
1 | # Configurations for the Intel PXA27x Appications Processor Family. | 1 | # Configurations for the Intel PXA27x Appications Processor Family. |
2 | # Please use tune-xscale for PXA255/PXA26x based processors. | 2 | # Please use tune-xscale for PXA255/PXA26x based processors. |
3 | PACKAGE_EXTRA_ARCHS += "iwmmxt" | ||
4 | TARGET_CC_ARCH = "-march=iwmmxt -mcpu=iwmmxt -mtune=iwmmxt" | 3 | TARGET_CC_ARCH = "-march=iwmmxt -mcpu=iwmmxt -mtune=iwmmxt" |
5 | PACKAGE_ARCH = "iwmmxt" | 4 | PACKAGE_ARCH = "iwmmxt" |
5 | PACKAGE_EXTRA_ARCHS += "iwmmxt" | ||
6 | 6 | ||
diff --git a/meta/conf/machine/include/zaurus-clamshell-2.6.conf b/meta/conf/machine/include/zaurus-2.6.conf index e0a9e38e91..ce9b44c9fe 100644 --- a/meta/conf/machine/include/zaurus-clamshell-2.6.conf +++ b/meta/conf/machine/include/zaurus-2.6.conf | |||
@@ -6,10 +6,10 @@ PREFERRED_VERSION_wpa_supplicant = "0.4.7" | |||
6 | 6 | ||
7 | PCMCIA_MANAGER ?= "pcmciautils" | 7 | PCMCIA_MANAGER ?= "pcmciautils" |
8 | 8 | ||
9 | MACHINE_FEATURES = "kernel26 apm alsa pcmcia bluetooth irda usbgadget" | 9 | MACHINE_FEATURES = "kernel26 apm alsa pcmcia irda usbgadget keyboard touchscreen" |
10 | MACHINE_FEATURES_akita = "kernel26 apm alsa pcmcia bluetooth irda usbgadget usbhost" | 10 | MACHINE_FEATURES_append_tosa = " usbhost usbwlanng " |
11 | MACHINE_FEATURES_spitz = "kernel26 apm alsa pcmcia bluetooth irda usbgadget usbhost ext2" | 11 | MACHINE_FEATURES_append_akita = " usbhost " |
12 | 12 | MACHINE_FEATURES_append_spitz = " usbhost ext2 " | |
13 | 13 | ||
14 | MACHINE_EXTRA_RDEPENDS = "zaurusd" | 14 | MACHINE_EXTRA_RDEPENDS = "zaurusd" |
15 | MACHINE_EXTRA_RRECOMMENDS_c7x0 = "kernel-module-snd-soc-corgi" | 15 | MACHINE_EXTRA_RRECOMMENDS_c7x0 = "kernel-module-snd-soc-corgi" |
@@ -17,4 +17,4 @@ MACHINE_EXTRA_RRECOMMENDS_akita = "kernel-module-snd-soc-spitz" | |||
17 | MACHINE_EXTRA_RRECOMMENDS_spitz = "kernel-module-snd-soc-spitz" | 17 | MACHINE_EXTRA_RRECOMMENDS_spitz = "kernel-module-snd-soc-spitz" |
18 | MACHINE_EXTRA_RRECOMMENDS_poodle = "kernel-module-snd-soc-poodle" | 18 | MACHINE_EXTRA_RRECOMMENDS_poodle = "kernel-module-snd-soc-poodle" |
19 | 19 | ||
20 | MACHINE_TASK_PROVIDER = "task-base" \ No newline at end of file | 20 | MACHINE_TASK_PROVIDER = "task-base" |
diff --git a/meta/conf/machine/nokia770.conf b/meta/conf/machine/nokia770.conf index 2e22771e4a..6bde574d02 100644 --- a/meta/conf/machine/nokia770.conf +++ b/meta/conf/machine/nokia770.conf | |||
@@ -2,7 +2,7 @@ | |||
2 | #@NAME: Nokia 770 internet tablet | 2 | #@NAME: Nokia 770 internet tablet |
3 | #@DESCRIPTION: Machine configuration for the Nokia 770, an omap 1710 based tablet | 3 | #@DESCRIPTION: Machine configuration for the Nokia 770, an omap 1710 based tablet |
4 | TARGET_ARCH = "arm" | 4 | TARGET_ARCH = "arm" |
5 | PACKAGE_EXTRA_ARCHS = "armv4 armv5te" | 5 | PACKAGE_EXTRA_ARCHS = "armv4 armv4t armv5te" |
6 | 6 | ||
7 | PREFERRED_PROVIDER_virtual/xserver = "xserver-kdrive-omap" | 7 | PREFERRED_PROVIDER_virtual/xserver = "xserver-kdrive-omap" |
8 | PREFERRED_PROVIDER_virtual/bootloader = "" | 8 | PREFERRED_PROVIDER_virtual/bootloader = "" |
@@ -33,4 +33,4 @@ ROOTFS_POSTPROCESS_COMMAND += " remove_init_link; " | |||
33 | MACHINE_FEATURES = "kernel26 apm alsa bluetooth usbgadget usbhost" | 33 | MACHINE_FEATURES = "kernel26 apm alsa bluetooth usbgadget usbhost" |
34 | MACHINE_ESSENTIAL_EXTRA_RDEPENDS = "nokia770-init" | 34 | MACHINE_ESSENTIAL_EXTRA_RDEPENDS = "nokia770-init" |
35 | 35 | ||
36 | MACHINE_TASK_PROVIDER = "task-base" \ No newline at end of file | 36 | MACHINE_TASK_PROVIDER = "task-base" |
diff --git a/meta/conf/machine/spitz.conf b/meta/conf/machine/spitz.conf index cf2c5f3f4f..2c4e10935e 100644 --- a/meta/conf/machine/spitz.conf +++ b/meta/conf/machine/spitz.conf | |||
@@ -3,7 +3,7 @@ | |||
3 | #@DESCRIPTION: Machine configuration for the Sharp Zaurus SL-C3000 device | 3 | #@DESCRIPTION: Machine configuration for the Sharp Zaurus SL-C3000 device |
4 | 4 | ||
5 | include conf/machine/include/zaurus-clamshell.conf | 5 | include conf/machine/include/zaurus-clamshell.conf |
6 | include conf/machine/include/zaurus-clamshell-2.6.conf | 6 | include conf/machine/include/zaurus-2.6.conf |
7 | 7 | ||
8 | PIVOTBOOT_EXTRA_RDEPENDS += "pivotinit ${PCMCIA_MANAGER}" | 8 | PIVOTBOOT_EXTRA_RDEPENDS += "pivotinit ${PCMCIA_MANAGER}" |
9 | 9 | ||
diff --git a/meta/conf/sanity.conf b/meta/conf/sanity.conf index 5a6e3defb6..58313f27ca 100644 --- a/meta/conf/sanity.conf +++ b/meta/conf/sanity.conf | |||
@@ -3,6 +3,6 @@ | |||
3 | # See sanity.bbclass | 3 | # See sanity.bbclass |
4 | # | 4 | # |
5 | # Expert users can confirm their sanity with "touch conf/sanity.conf" | 5 | # Expert users can confirm their sanity with "touch conf/sanity.conf" |
6 | BB_MIN_VERSION = "1.4.3" | 6 | BB_MIN_VERSION = "1.6.2" |
7 | INHERIT += "sanity" | 7 | INHERIT += "sanity" |
8 | 8 | ||