From 994d2692779a49840c5bd1c4796c45944462c13f Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Thu, 13 Sep 2007 10:40:05 +0000 Subject: moko-autorev: add also libraries: libmoko* and libgsmd --- conf/distro/include/moko-autorev.inc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/conf/distro/include/moko-autorev.inc b/conf/distro/include/moko-autorev.inc index 5a1dc34784..bc4e763a19 100644 --- a/conf/distro/include/moko-autorev.inc +++ b/conf/distro/include/moko-autorev.inc @@ -1,3 +1,8 @@ +SRCREV_pn-libgsmd ?= "${AUTOREV}" +SRCREV_pn-libmokogsmd2 ?= "${AUTOREV}" +SRCREV_pn-libmokojournal2 ?= "${AUTOREV}" +SRCREV_pn-libmokopanelui2 ?= "${AUTOREV}" +SRCREV_pn-libmokoui2 ?= "${AUTOREV}" SRCREV_pn-openmoko-appmanager ?= "${AUTOREV}" SRCREV_pn-openmoko-calculator ?= "${AUTOREV}" SRCREV_pn-openmoko-calculator2 ?= "${AUTOREV}" -- cgit v1.2.3 From 0f80b18e9e7dc3a40b0a009a7ab59e7e984136da Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Fri, 14 Sep 2007 11:46:06 +0000 Subject: tune-geodelx: added tuning for AMD GeodeLX cpu Starting from GCC 4.3 it will have own -mcpu flag. With older versions optimizations for AMD K6-2 are best. --- conf/machine/include/tune-geodelx.conf | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 conf/machine/include/tune-geodelx.conf diff --git a/conf/machine/include/tune-geodelx.conf b/conf/machine/include/tune-geodelx.conf new file mode 100644 index 0000000000..335fadec6e --- /dev/null +++ b/conf/machine/include/tune-geodelx.conf @@ -0,0 +1,6 @@ +# Geode CPU has it's own target in GCC 4.3 +# in older versions k6-2 is closest +# +TARGET_CC_ARCH = "-march=k6-2" +PACKAGE_ARCH = "geode" + -- cgit v1.2.3 From 382cd505caf66d1777e487640b819a73a3facdee Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Fri, 14 Sep 2007 11:49:13 +0000 Subject: alix: use tuning for GeodeLX cpu, switch to i586 According to Jordan Crouse (Geode maintainer in Linux) GeodeLX is i586 not i686. Also optimizations for AMD K6-2 are due to his suggestions. My ALIX.1c board runs with Geode optimized packages for over week without problems. --- conf/machine/alix.conf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/conf/machine/alix.conf b/conf/machine/alix.conf index 77312791dc..29af29a3b8 100644 --- a/conf/machine/alix.conf +++ b/conf/machine/alix.conf @@ -5,9 +5,9 @@ # http://pcengines.ch/alix1c.htm # i386 doesn't work with NTPL, see http://ecos.sourceware.org/ml/libc-ports/2006-03/msg00030.html -TARGET_ARCH = "i686" +TARGET_ARCH = "i586" -PACKAGE_EXTRA_ARCHS = "x86 i386 i486 i586" +PACKAGE_EXTRA_ARCHS = "x86 i386 i486 geode" PREFERRED_PROVIDER_virtual/kernel = "linux" PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg" @@ -17,6 +17,8 @@ GLIBC_EXTRA_OECONF = "--with-tls" MACHINE_FEATURES = "kernel26 usbhost ext2 pci screen alsa acpi" +require conf/machine/include/tune-geodelx.conf + IMAGE_FSTYPES += "tar.gz" MACHINE_EXTRA_RRECOMMENDS = "\ -- cgit v1.2.3