From: Michael Tremer Date: Fri, 6 Mar 2009 11:30:26 +0000 (+0100) Subject: Renamed target atom330 to atom. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f15b195f63e93c158dd9e0885cf29817b84d199;p=ipfire-3.x.git Renamed target atom330 to atom. --- diff --git a/lfs/openssl b/lfs/openssl index 4f6adfd2e..2bc122160 100644 --- a/lfs/openssl +++ b/lfs/openssl @@ -39,7 +39,7 @@ endif # These arches do support sse2. ifneq "$(TARGET)" "via-c7" -ifneq "$(TARGET)" "atom330" +ifneq "$(TARGET)" "atom" ifneq "$(TARGET)" "core2duo" SSL_ARCH += no-sse2 endif diff --git a/lfs/pixman b/lfs/pixman index b47fc3f24..c37ce7f61 100644 --- a/lfs/pixman +++ b/lfs/pixman @@ -38,7 +38,7 @@ CONFIGURE_ARGS = --disable-mmx --disable-sse2 ifeq "$(TARGET)" "via-c7" CONFIGURE_ARGS = --enable-mmx #--enable-sse2 endif -ifeq "$(TARGET)" "atom330" +ifeq "$(TARGET)" "atom" CONFIGURE_ARGS = --enable-mmx --enable-sse2 endif diff --git a/tools/make-check b/tools/make-check index 99d27e763..a0048bd4f 100644 --- a/tools/make-check +++ b/tools/make-check @@ -153,7 +153,7 @@ check_supported_target() { FLAGS="sse sse2 pni" elif [ "$1" = "via-c3" ]; then FLAGS="3dnow" - elif [ "$1" = "atom330" ]; then + elif [ "$1" = "atom" ]; then FLAGS="mmx sse sse2 pni ssse3" elif [ "$1" = "core2duo" ]; then FLAGS="sse2" diff --git a/tools/make-constants b/tools/make-constants index 8c670c6d1..8759ca332 100644 --- a/tools/make-constants +++ b/tools/make-constants @@ -26,7 +26,7 @@ # Default target TARGET=${TARGET-i686} -POSSIBLE_TARGETS="i686 i586 i486 via-c7 via-c3 geodelx atom330 core2duo" +POSSIBLE_TARGETS="i686 i586 i486 via-c7 via-c3 geodelx atom core2duo" # Configuration rootdir CONFIG_ROOT=/etc/$SNAME @@ -98,7 +98,7 @@ if [ 'i686' = $TARGET -o 'i586' = $TARGET \ IFS_TARGET="${MACHINE}-pc-linux-gnu" CFLAGS="-O2 -march=${MACHINE} -pipe -fomit-frame-pointer" CXXFLAGS="${CFLAGS}" -elif [ 'atom330' = $TARGET ]; then +elif [ 'atom' = $TARGET ]; then MACHINE=i686 IFS_TARGET="${MACHINE}-atom-linux-gnu" CFLAGS="-O2 -march=${MACHINE} -mmmx -msse -msse2 -msse3 -mssse3 -pipe -fomit-frame-pointer"