diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/bitbake.conf | 3 | ||||
-rw-r--r-- | conf/distro/angstrom-2007.1.conf | 2 | ||||
-rw-r--r-- | conf/distro/include/angstrom-glibc.inc | 6 | ||||
-rw-r--r-- | conf/machine/compulab-pxa270.conf | 2 | ||||
-rw-r--r-- | conf/machine/efika.conf | 3 | ||||
-rw-r--r-- | conf/machine/logicpd-pxa270.conf | 2 | ||||
-rw-r--r-- | conf/machine/x86.conf | 6 |
7 files changed, 20 insertions, 4 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf index b06e2bb3d4..dcdc18c322 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -319,7 +319,7 @@ export palmqtdir = "/opt/QtPalmtop" GNU_MIRROR = "ftp://ftp.gnu.org/gnu" DEBIAN_MIRROR = "ftp://ftp.debian.org/debian/pool" -SOURCEFORGE_MIRROR = "http://heanet.dl.sourceforge.net/sourceforge" +SOURCEFORGE_MIRROR = "http://downloads.sourceforge.net" GPE_MIRROR = "http://gpe.linuxtogo.org/download/source" GPE_SVN = "svn://projects.linuxtogo.org/svn/gpe/trunk/base;module=${PN}" XLIBS_MIRROR = "http://xlibs.freedesktop.org/release" @@ -332,6 +332,7 @@ E_URI = "http://enlightenment.freedesktop.org/files" FREEDESKTOP_CVS = "cvs://anoncvs:anoncvs@anoncvs.freedesktop.org/cvs" GENTOO_MIRROR = "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles" APACHE_MIRROR = "http://www.apache.org/dist" +KERNELORG_MIRROR = "http://kernel.org/" # You can use the mirror of your country to get faster downloads by putting # export DEBIAN_MIRROR = "ftp://ftp.de.debian.org/debian/pool" diff --git a/conf/distro/angstrom-2007.1.conf b/conf/distro/angstrom-2007.1.conf index 6e15224e5f..630fbc6bbf 100644 --- a/conf/distro/angstrom-2007.1.conf +++ b/conf/distro/angstrom-2007.1.conf @@ -8,7 +8,7 @@ #DISTRO_VERSION = "2007.3" DISTRO_VERSION = "test-${DATE}" -DISTRO_REVISION = "20" +DISTRO_REVISION = "22" require conf/distro/include/angstrom.inc require conf/distro/include/sane-srcdates.inc diff --git a/conf/distro/include/angstrom-glibc.inc b/conf/distro/include/angstrom-glibc.inc index 6ee509759e..28e3b3eddd 100644 --- a/conf/distro/include/angstrom-glibc.inc +++ b/conf/distro/include/angstrom-glibc.inc @@ -7,7 +7,13 @@ TARGET_OS = "linux${@['','-gnueabi'][bb.data.getVar('TARGET_ARCH',d,1)=='arm']}" #mess with compiler flags to use -Os instead of -O2 #Please see http://free-electrons.com/doc/embedded_linux_optimizations/img47.html for some more info +# perl has some problems, see http://bugs.openembedded.org/show_bug.cgi?id=1616 + FULL_OPTIMIZATION = "-fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os" +FULL_OPTIMIZATION_pn-perl = "-fexpensive-optimizations -fomit-frame-pointer -frename-registers -O1" + BUILD_OPTIMIZATION = "-Os" +BUILD_OPTIMIZATION_pn-perl = "-O1" + CXXFLAGS += "-fvisibility-inlines-hidden" diff --git a/conf/machine/compulab-pxa270.conf b/conf/machine/compulab-pxa270.conf index b49bf48d07..12f82773d4 100644 --- a/conf/machine/compulab-pxa270.conf +++ b/conf/machine/compulab-pxa270.conf @@ -19,4 +19,6 @@ ROOT_FLASH_SIZE = "32" EXTRA_IMAGECMD_jffs2 = "--pad=0x1000000 --eraseblock=0x40000" +MACHINE_FEATURES = "kernel26 pcmcia usbhost usbgadget pcmcia touchscreen alsa" +MACHINE_TASK_PROVIDER = "task-base" diff --git a/conf/machine/efika.conf b/conf/machine/efika.conf index 33fac1ae6a..5b2c87b55c 100644 --- a/conf/machine/efika.conf +++ b/conf/machine/efika.conf @@ -4,8 +4,9 @@ TARGET_ARCH = "powerpc" -PACKAGE_EXTRA_ARCHS = "ppc" +PACKAGE_EXTRA_ARCHS = "ppc ppc603e" +MACHINE_FEATURES = "kernel26 usbhost ext2 pci alsa" PREFERRED_PROVIDER_virtual/kernel = "linux-${MACHINE}" diff --git a/conf/machine/logicpd-pxa270.conf b/conf/machine/logicpd-pxa270.conf index dc41e7c2fd..8fd58bb5ed 100644 --- a/conf/machine/logicpd-pxa270.conf +++ b/conf/machine/logicpd-pxa270.conf @@ -24,4 +24,6 @@ ROOT_FLASH_SIZE = "32" EXTRA_IMAGECMD_jffs2 = "--pad=0x1000000 --eraseblock=0x40000" +MACHINE_FEATURES = "kernel26 pcmcia usbhost usbgadget pcmcia touchscreen alsa" +MACHINE_TASK_PROVIDER = "task-base" diff --git a/conf/machine/x86.conf b/conf/machine/x86.conf index b2147f2c0d..91663dfd7c 100644 --- a/conf/machine/x86.conf +++ b/conf/machine/x86.conf @@ -8,7 +8,11 @@ TARGET_ARCH = "i486" PACKAGE_EXTRA_ARCHS = "x86" PREFERRED_PROVIDER_virtual/kernel = "linux-x86" # todo: convert to task-base -BOOTSTRAP_EXTRA_RDEPENDS = "kernel pciutils udev kernel-modules" +# BOOTSTRAP_EXTRA_RDEPENDS = "kernel pciutils udev kernel-modules" + +MACHINE_TASK_PROVIDER = "task-base" + +MACHINE_FEATURES = "kernel26 pci usbhost" udevdir = "/dev" OLDEST_KERNEL = "2.6.17" |