This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, next has been updated via fd2d8776d3d7913bcd7eead045edc10064a7b240 (commit) via 2b4cacd26fc82e93c0578a0cb556f674e9d97858 (commit) from 50f696157ff447b332b92588588dbfa5cf98fef3 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit fd2d8776d3d7913bcd7eead045edc10064a7b240 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat Nov 13 12:02:29 2010 +0100
Kernel-config: Disabled xfs-filesystem debug.
commit 2b4cacd26fc82e93c0578a0cb556f674e9d97858 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat Nov 13 12:02:01 2010 +0100
Add a message that the toolchain can't build on ipfire.
-----------------------------------------------------------------------
Summary of changes: config/kernel/kernel.config.i586-ipfire | 2 +- config/kernel/kernel.config.i586-ipfire-pae | 2 +- config/kernel/kernel.config.i586-ipfire-xen | 2 +- make.sh | 5 ++++- 4 files changed, 7 insertions(+), 4 deletions(-)
Difference in files: diff --git a/config/kernel/kernel.config.i586-ipfire b/config/kernel/kernel.config.i586-ipfire index 3be9bc6..4600b29 100644 --- a/config/kernel/kernel.config.i586-ipfire +++ b/config/kernel/kernel.config.i586-ipfire @@ -3568,7 +3568,7 @@ CONFIG_XFS_FS=m CONFIG_XFS_QUOTA=y CONFIG_XFS_POSIX_ACL=y # CONFIG_XFS_RT is not set -CONFIG_XFS_DEBUG=y +# CONFIG_XFS_DEBUG is not set # CONFIG_GFS2_FS is not set # CONFIG_OCFS2_FS is not set # CONFIG_BTRFS_FS is not set diff --git a/config/kernel/kernel.config.i586-ipfire-pae b/config/kernel/kernel.config.i586-ipfire-pae index 741b73a..4e53f4f 100644 --- a/config/kernel/kernel.config.i586-ipfire-pae +++ b/config/kernel/kernel.config.i586-ipfire-pae @@ -3585,7 +3585,7 @@ CONFIG_XFS_FS=m CONFIG_XFS_QUOTA=y CONFIG_XFS_POSIX_ACL=y # CONFIG_XFS_RT is not set -CONFIG_XFS_DEBUG=y +# CONFIG_XFS_DEBUG is not set # CONFIG_GFS2_FS is not set # CONFIG_OCFS2_FS is not set # CONFIG_BTRFS_FS is not set diff --git a/config/kernel/kernel.config.i586-ipfire-xen b/config/kernel/kernel.config.i586-ipfire-xen index 7110200..29987a5 100644 --- a/config/kernel/kernel.config.i586-ipfire-xen +++ b/config/kernel/kernel.config.i586-ipfire-xen @@ -3367,7 +3367,7 @@ CONFIG_XFS_FS=m CONFIG_XFS_QUOTA=y CONFIG_XFS_POSIX_ACL=y # CONFIG_XFS_RT is not set -CONFIG_XFS_DEBUG=y +# CONFIG_XFS_DEBUG is not set # CONFIG_GFS2_FS is not set # CONFIG_OCFS2_FS is not set # CONFIG_BTRFS_FS is not set diff --git a/make.sh b/make.sh index 4c7be21..4bec05b 100755 --- a/make.sh +++ b/make.sh @@ -234,9 +234,12 @@ prepareenv() { }
buildtoolchain() { - if [ "$MACHINE" = "x86_64" ]; then + if [ "$(uname -m)" = "x86_64" ]; then exiterror "Cannot build toolchain on x86_64. Please use the download." fi + if [ "$(uname -r | grep ipfire)" ]; then + exiterror "Cannot build toolchain on ipfire. Please use the download." + fi
LOGFILE="$BASEDIR/log/_build.toolchain.log" export LOGFILE
hooks/post-receive -- IPFire 2.x development tree