From mboxrd@z Thu Jan 1 00:00:00 1970 From: git@ipfire.org To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, seventeen, updated. 013153bc789728aea220c92d92918c6ff5dee8a1 Date: Wed, 22 Oct 2014 21:36:13 +0200 Message-ID: <20141022193614.673CA2071F@argus.ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2803613887909037435==" List-Id: --===============2803613887909037435== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable 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, seventeen has been updated via 013153bc789728aea220c92d92918c6ff5dee8a1 (commit) via af886d014077b600af93baf0de844cacf67d7bd3 (commit) via 3a317084d65b0d7c5400fc01c969c65da023942b (commit) from 6e0b26ba7db9d1faa5eb564b07d617c78d8ab0ef (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 013153bc789728aea220c92d92918c6ff5dee8a1 Author: Arne Fitzenreiter Date: Wed Oct 22 21:35:13 2014 +0200 set toolchain to 8 and version to 2.17. commit af886d014077b600af93baf0de844cacf67d7bd3 Author: Arne Fitzenreiter Date: Wed Oct 22 21:34:42 2014 +0200 tzdata: fix build with new coreutils. commit 3a317084d65b0d7c5400fc01c969c65da023942b Author: Arne Fitzenreiter Date: Wed Oct 22 13:49:54 2014 +0200 Revert "Revert "toolchain: Fix compiling due to Stack Protector changes."" =20 This reverts commit 4ec728f840372f61d61c5019d766f453231eb706. ----------------------------------------------------------------------- Summary of changes: lfs/gcc | 3 +++ lfs/glibc | 13 +++++++++++++ lfs/tzdata | 1 + make.sh | 8 ++++---- 4 files changed, 21 insertions(+), 4 deletions(-) Difference in files: diff --git a/lfs/gcc b/lfs/gcc index a9f124b..0264d37 100644 --- a/lfs/gcc +++ b/lfs/gcc @@ -97,6 +97,9 @@ else EXTRA_MAKE =3D=20 EXTRA_INSTALL =3D=20 endif + + # Disable stack protection in toolchain. + CFLAGS +=3D -fno-stack-protector endif =20 ifeq "$(MACHINE_TYPE)" "arm" diff --git a/lfs/glibc b/lfs/glibc index 32c494f..ee332c4 100644 --- a/lfs/glibc +++ b/lfs/glibc @@ -297,8 +297,21 @@ endif cd $(DIR_SRC)/glibc-build && \ CFLAGS=3D"$(CFLAGS) -fno-asynchronous-unwind-tables" \ $(DIR_APP)/configure $(EXTRA_CONFIG) + + sed -i $(DIR_SRC)/glibc-build/config.make \ + -e "s/^build-pic-default=3D.*/build-pic-default=3Dyes/" + + # Build the glibc libraries without stack protection (as this is not suppor= ted) + echo "build-programs=3Dno" >> $(DIR_SRC)/glibc-build/configparms + cd $(DIR_SRC)/glibc-build && make PARALLELMFLAGS=3D$(MAKETUNING) \ + CFLAGS=3D"$(CFLAGS) -fno-stack-protector -U_FORTIFY_SOURCE" \ + CXXFLAGS=3D"$(CXXFLAGS) -fno-stack-protector -U_FORTIFY_SOURCE" + + # Build the programs with hardening + : > $(DIR_SRC)/glibc-build/configparms cd $(DIR_SRC)/glibc-build && make PARALLELMFLAGS=3D$(MAKETUNING) \ CFLAGS=3D"$(CFLAGS)" CXXFLAGS=3D"$(CXXFLAGS)" + cd $(DIR_SRC)/glibc-build && make $(EXTRA_INSTALL) install =20 ifeq "$(ROOT)" "" diff --git a/lfs/tzdata b/lfs/tzdata index c36b7a3..afe3124 100644 --- a/lfs/tzdata +++ b/lfs/tzdata @@ -94,6 +94,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) /usr/share/zoneinfo =20 rm -vf /usr/share/zoneinfo/localtime + rm -vf /etc/localtime cp -vf /usr/share/zoneinfo/GMT /etc/localtime =20 @rm -rf $(DIR_APP) diff --git a/make.sh b/make.sh index 8a7aafd..bbbaffd 100755 --- a/make.sh +++ b/make.sh @@ -24,9 +24,9 @@ =20 NAME=3D"IPFire" # Software name SNAME=3D"ipfire" # Short name -VERSION=3D"2.15" # Version number -CORE=3D"85" # Core Level (Filename) -PAKFIRE_CORE=3D"84" # Core Level (PAKFIRE) +VERSION=3D"2.17" # Version number +CORE=3D"86" # Core Level (Filename) +PAKFIRE_CORE=3D"85" # Core Level (PAKFIRE) GIT_BRANCH=3D`git rev-parse --abbrev-ref HEAD` # Git Branch SLOGAN=3D"www.ipfire.org" # Software slogan CONFIG_ROOT=3D/var/ipfire # Configuration rootdir @@ -36,7 +36,7 @@ BUILD_IMAGES=3D1 # Flash and Xen Downloader KVER=3D`grep --max-count=3D1 VER lfs/linux | awk '{ print $3 }'` GIT_TAG=3D$(git tag | tail -1) # Git Tag GIT_LASTCOMMIT=3D$(git log | head -n1 | cut -d" " -f2 |head -c8) # Last comm= it -TOOLCHAINVER=3D7 +TOOLCHAINVER=3D8 =20 # New architecture variables BUILD_ARCH=3D"$(uname -m)" hooks/post-receive -- IPFire 2.x development tree --===============2803613887909037435==--