You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(11) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2002 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(12) |
Nov
|
Dec
|
2003 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(8) |
Dec
(1) |
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(9) |
Jun
(5) |
Jul
(1) |
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
(1) |
Apr
(35) |
May
(9) |
Jun
(10) |
Jul
|
Aug
(6) |
Sep
(23) |
Oct
(24) |
Nov
(18) |
Dec
(81) |
2006 |
Jan
(37) |
Feb
(2) |
Mar
(10) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(5) |
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(23) |
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Jan-Benedict G. <jb...@us...> - 2007-08-30 14:10:42
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2885 Modified Files: build_toolchain.sh Log Message: * New mpfr version. * Break out version handling a bit to simplify updates to newer versions. Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.69 retrieving revision 1.70 diff -u -d -r1.69 -r1.70 --- build_toolchain.sh 10 Aug 2007 22:39:40 -0000 1.69 +++ build_toolchain.sh 30 Aug 2007 14:10:28 -0000 1.70 @@ -59,6 +59,8 @@ # Default target (if it's not given on command line) # TARGET="vax-linux-uclibc" +GMP_VERSION="4.2.1" +MPFR_VERSION="2.3.0" function current_utc_time() { date -u '+%Y%m%d-%H%M%S-UTC' @@ -515,17 +517,17 @@ [ "${DO_PATCHES_LINUX}" -ne 0 ] && execute try_patches.sh "linux" "${LINUX_SRC}" "${VAX_PATCHES_PATH}" # -# Get libmpfr/libgmp +# Get libgmp/libmpfr # pushd "${GCC_SRC}" - execute wget -q http://www.mpfr.org/mpfr-current/mpfr-2.2.1.tar.gz - execute wget -q -O mpfr.patch http://www.mpfr.org/mpfr-current/patches - execute tar xzf mpfr-2.2.1.tar.gz - (cd mpfr-2.2.1 && execute patch -p1 < ../mpfr.patch) + execute wget -q "ftp://ftp.gnu.org/gnu/gmp/gmp-${GMP_VERSION}.tar.bz2" + execute tar xjf "gmp-${GMP_VERSION}.tar.bz2" + (cd "gmp-${GMP_VERSION}" && execute patch -p1 < "${VAX_PATCHES_PATH}/gmp.patch") - execute wget -q ftp://ftp.gnu.org/gnu/gmp/gmp-4.2.1.tar.bz2 - execute tar xjf gmp-4.2.1.tar.bz2 - (cd gmp-4.2.1 && execute patch -p1 < "${VAX_PATCHES_PATH}/gmp.patch") + execute wget -q "http://www.mpfr.org/mpfr-current/mpfr-${MPFR_VERSION}.tar.gz" + execute wget -q -O mpfr.patch http://www.mpfr.org/mpfr-current/patches || true + execute tar xzf "mpfr-${MPFR_VERSION}.tar.gz" + (cd "mpfr-${MPFR_VERSION}" && execute patch -p1 < ../mpfr.patch) || true popd @@ -771,16 +773,17 @@ # Build gcc to run on the target system # pushd "${GCC1_NATIVE_BUILD}" - pushd "${GCC_SRC}/gmp-4.2.1" + pushd "${GCC_SRC}/gmp-${GMP_VERSION}" + NONE_TARGET="none-`echo "${TARGET}" | cut -f 2- -d -`" CC="${TARGET}-gcc" LDFLAGS=-static CFLAGS=-static \ execute ./configure \ - --host="${TARGET}" \ + --host="${NONE_TARGET}" \ --prefix="${INSTALL_BASE}/usr" execute make execute make install execute make install prefix="${INSTALL_NATIVE_BASE}/usr" popd - pushd "${GCC_SRC}/mpfr-2.2.1" + pushd "${GCC_SRC}/mpfr-${MPFR_VERSION}" CC="${TARGET}-gcc" LDFLAGS=-static CFLAGS=-static \ execute ./configure \ --host="${TARGET}" \ |
From: Jan-Benedict G. <jb...@us...> - 2007-08-10 22:42:31
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5241 Modified Files: vax_toolchain_config Log Message: * Add my setup on jblaptop. Index: vax_toolchain_config =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/vax_toolchain_config,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- vax_toolchain_config 7 Jul 2007 17:02:15 -0000 1.10 +++ vax_toolchain_config 10 Aug 2007 22:42:28 -0000 1.11 @@ -134,6 +134,21 @@ # # Settings for: # +# Jan-Benedict Glaw <jb...@lu...> on jblaptop +# +if [ `whoami` = jbglaw -a `hostname` = jblaptop ]; then + HACKERY_ROOT=/home/jbglaw/vax + export UPSTREAM_SANDBOXES_PATH="$HACKERY_ROOT/checkout" + export UPSTREAM_PATCHES_PATH="$HACKERY_ROOT/upstream-patches" + export VAX_PATCHES_PATH="${UPSTREAM_SANDBOXES_PATH}/toolchain/patches" + export BUILD_BASE_DIR="$HACKERY_ROOT/buildplace" + export VAX_TOOLCHAIN_SCRIPTS="${UPSTREAM_SANDBOXES_PATH}/toolchain/scripts" + export LOGROTATE=5 +fi + +# +# Settings for: +# # kenn@excalibur # if [ `whoami` = kenn -a `hostname` = excalibur.research.wombat.ie ]; then |
From: Jan-Benedict G. <jb...@us...> - 2007-08-10 22:40:59
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5048 Modified Files: initial_cvs_checkout.sh Log Message: * Require `git'. * Check-out the GIT Linux kernel, too. * NOTICE: Just re-run the script. It'll check out (or clone) only what's still missing on your box. Index: initial_cvs_checkout.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/initial_cvs_checkout.sh,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- initial_cvs_checkout.sh 7 Jul 2007 17:05:47 -0000 1.13 +++ initial_cvs_checkout.sh 10 Aug 2007 22:40:55 -0000 1.14 @@ -11,7 +11,7 @@ # # Test if all required tools are installed. # -REQ_TOOLS="cvs svn" +REQ_TOOLS="cvs svn git" for tool in $REQ_TOOLS; do if ! command -v $tool > /dev/null 2>&1; then echo "Error: $tool is required by `basename $0` but was not found on your system." >&2 @@ -82,4 +82,8 @@ copy_directory.sh uclibc-upstream-HEAD uclibc-upstream-HEAD-last popd fi + + if [ ! -d linux-git ]; then + git clone git://git.kernel.org/pub/scm/linux/kernel/git/jbglaw/vax-linux.git linux-git + fi popd |
From: Jan-Benedict G. <jb...@us...> - 2007-08-10 22:39:45
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv4732 Modified Files: build_toolchain.sh Log Message: * Also support building mips{,el}-linux toolchains. Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.68 retrieving revision 1.69 diff -u -d -r1.68 -r1.69 --- build_toolchain.sh 7 Jul 2007 18:46:27 -0000 1.68 +++ build_toolchain.sh 10 Aug 2007 22:39:40 -0000 1.69 @@ -306,6 +306,9 @@ powerpc*linux) KERNEL_ARCH=ppc ;; + mips*linux) + KERNEL_ARCH=mips + ;; *) echo "Configuration \"${TARGET}\" unknown..." >&2 false |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 21:46:19
|
Update of /cvsroot/linux-vax/toolchain/patches In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv32188 Removed Files: gcc-000005-disable-debugging-dwarf2.patch Log Message: * Seems the upstream DWARF debugging problems are gone, so I'm removing this patch for now. --- gcc-000005-disable-debugging-dwarf2.patch DELETED --- |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 18:46:33
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv26042 Modified Files: build_toolchain.sh Log Message: * Use POSIX sh. * Update to current versions for mpfr etc. Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.67 retrieving revision 1.68 diff -u -d -r1.67 -r1.68 --- build_toolchain.sh 25 Oct 2006 10:59:46 -0000 1.67 +++ build_toolchain.sh 7 Jul 2007 18:46:27 -0000 1.68 @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh set -e @@ -515,14 +515,14 @@ # Get libmpfr/libgmp # pushd "${GCC_SRC}" - wget -q http://www.mpfr.org/mpfr-current/mpfr-2.2.0.tar.gz - wget -q -O mpfr.patch http://www.mpfr.org/mpfr-current/patches - tar xzf mpfr-2.2.0.tar.gz - (cd mpfr-2.2.0 && patch -p1 < ../mpfr.patch) + execute wget -q http://www.mpfr.org/mpfr-current/mpfr-2.2.1.tar.gz + execute wget -q -O mpfr.patch http://www.mpfr.org/mpfr-current/patches + execute tar xzf mpfr-2.2.1.tar.gz + (cd mpfr-2.2.1 && execute patch -p1 < ../mpfr.patch) - wget -q ftp://ftp.gnu.org/gnu/gmp/gmp-4.2.1.tar.bz2 - tar xjf gmp-4.2.1.tar.bz2 - (cd gmp-4.2.1 && patch -p1 < "${VAX_PATCHES_PATH}/gmp.patch") + execute wget -q ftp://ftp.gnu.org/gnu/gmp/gmp-4.2.1.tar.bz2 + execute tar xjf gmp-4.2.1.tar.bz2 + (cd gmp-4.2.1 && execute patch -p1 < "${VAX_PATCHES_PATH}/gmp.patch") popd @@ -777,7 +777,7 @@ execute make install execute make install prefix="${INSTALL_NATIVE_BASE}/usr" popd - pushd "${GCC_SRC}/mpfr-2.2.0" + pushd "${GCC_SRC}/mpfr-2.2.1" CC="${TARGET}-gcc" LDFLAGS=-static CFLAGS=-static \ execute ./configure \ --host="${TARGET}" \ @@ -819,4 +819,3 @@ build "${BUILD_GCC1}" && \ execute make ${MAKEFLAGS} prefix="${INSTALL_NATIVE_BASE}/usr" install-gcc popd - |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:53:46
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1759 Modified Files: update_upstream_cvs_sandboxes.sh Log Message: * Preparation for GIT. But not yet... Index: update_upstream_cvs_sandboxes.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/update_upstream_cvs_sandboxes.sh,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- update_upstream_cvs_sandboxes.sh 7 Jul 2007 17:01:35 -0000 1.11 +++ update_upstream_cvs_sandboxes.sh 7 Jul 2007 17:53:43 -0000 1.12 @@ -63,3 +63,25 @@ done popd done + +# +# GIT managed archives +# +for COMPONENT in ; do + pushd "${UPSTREAM_SANDBOXES_PATH}/${COMPONENT}" + for i in `seq 1 "${MAX_TRIES}"`; do + echo "Updating ${COMPONENT}, try #${i}..." + git pull + RET=$? + if [ "${RET}" -eq 0 ]; then + break + else + if [ "${i}" -eq "${MAX_TRIES}" ]; then + echo "Failed ${MAX_TRIES} times to update ${COMPONENT}" >&2 + [ "${IGNORE_ERRORS}" -eq 0 ] && exit "${RET}" + fi + sleep 5 + fi + done + popd +done |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:25:31
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv21361 Modified Files: _Tar Log Message: * Add missing exec. Index: _Tar =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/_Tar,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- _Tar 7 Jul 2007 17:18:08 -0000 1.2 +++ _Tar 7 Jul 2007 17:25:28 -0000 1.3 @@ -1,6 +1,6 @@ #!/usr/bin/env sh -command -v gtar > /dev/null 2>&1 && gtar "$@" -command -v tar > /dev/null 2>&1 && tar "$@" +command -v gtar > /dev/null 2>&1 && exec gtar "$@" +command -v tar > /dev/null 2>&1 && exec tar "$@" exit 1 |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:21:53
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv19532 Modified Files: _Tempfile Log Message: * Rework. Index: _Tempfile =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/_Tempfile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- _Tempfile 28 Dec 2005 17:21:05 -0000 1.1 +++ _Tempfile 7 Jul 2007 17:21:50 -0000 1.2 @@ -1,10 +1,8 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh -case "`uname -s`" in - Linux) exec tempfile;; - *) NEW_TEMPFILE="/tmp/TemPFIle-$$-`date -u '+%Y%m%d-%H%M%S'`" - touch "${NEW_TEMPFILE}" - echo "${NEW_TEMPFILE}" - ;; -esac +command -v tempfile > /dev/null 2>&1 && exec tempfile +command -v mktemp > /dev/null 2>&1 && exec mktemp +NEW_TEMPFILE="/tmp/TemPFIle-$$-`date -u '+%Y%m%d-%H%M%S'`" +touch "${NEW_TEMPFILE}" +echo "${NEW_TEMPFILE}" |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:18:11
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv17855 Modified Files: _Tar Log Message: * Rework. Index: _Tar =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/_Tar,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- _Tar 5 Jan 2006 17:53:08 -0000 1.1 +++ _Tar 7 Jul 2007 17:18:08 -0000 1.2 @@ -1,7 +1,6 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh -case "`uname -s`" in - Linux) exec tar "$@";; - *) exec gtar "$@";; -esac +command -v gtar > /dev/null 2>&1 && gtar "$@" +command -v tar > /dev/null 2>&1 && tar "$@" +exit 1 |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:16:58
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv17201 Modified Files: _Patch Log Message: * Fix braino. Index: _Patch =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/_Patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- _Patch 30 Dec 2005 21:15:32 -0000 1.2 +++ _Patch 7 Jul 2007 17:16:53 -0000 1.3 @@ -1,7 +1,6 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh -case "`uname -s`" in - Linux) exec patch "$@";; - *) exec gpatch "$@";; -esac +command -v gpatch > /dev/null 2>&1 && exec gpatch "$@" +command -v patch > /dev/null 2>&1 && exec patch "$@" +exit 1 |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:16:38
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv17167 Modified Files: _Diff Log Message: * Rework. Index: _Diff =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/_Diff,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- _Diff 7 Jul 2007 17:15:02 -0000 1.2 +++ _Diff 7 Jul 2007 17:16:35 -0000 1.3 @@ -1,6 +1,6 @@ #!/usr/bin/env sh -[ command -v gdiff > /dev/null 2>&1 ] && exec gdiff -Nurp "$@" -[ command -v diff > /dev/null 2>&1 ] && exec diff -Nurp "$@" +command -v gdiff > /dev/null 2>&1 && exec gdiff -Nurp "$@" +command -v diff > /dev/null 2>&1 && exec diff -Nurp "$@" exit 1 |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:15:07
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv16263 Modified Files: _Diff Log Message: * Rework. Index: _Diff =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/_Diff,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- _Diff 21 Dec 2005 10:25:27 -0000 1.1 +++ _Diff 7 Jul 2007 17:15:02 -0000 1.2 @@ -1,7 +1,6 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh -case "`uname -s`" in - Linux) exec diff -Nurp "$@";; - *) exec gdiff -Nurp "$@";; -esac +[ command -v gdiff > /dev/null 2>&1 ] && exec gdiff -Nurp "$@" +[ command -v diff > /dev/null 2>&1 ] && exec diff -Nurp "$@" +exit 1 |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:12:56
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv15305 Modified Files: README Log Message: * Remove empty last line. Index: README =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/README,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- README 19 Dec 2005 13:02:04 -0000 1.13 +++ README 7 Jul 2007 17:12:53 -0000 1.14 @@ -136,4 +136,3 @@ Optionally, you can also add (as a further argument) an existing directory to which testsuite results will be moved. - |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:09:29
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv13825 Modified Files: compare_buildlog.sh Log Message: * Should work with POSIX sh. * Don't leak tempfiles. Index: compare_buildlog.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/compare_buildlog.sh,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- compare_buildlog.sh 25 Oct 2006 08:32:31 -0000 1.10 +++ compare_buildlog.sh 7 Jul 2007 17:09:24 -0000 1.11 @@ -1,7 +1,4 @@ -#!/usr/bin/env bash - -TEMP1FILE="`_Tempfile`" -TEMP2FILE="`_Tempfile`" +#!/usr/bin/env sh function cleanup() { sed -e 's/[[:digit:]]\{8\}-[[:digit:]]\{6\}/xxxxxxxx-xxxxxx/g' | @@ -27,10 +24,12 @@ exit 1 fi +TEMP1FILE="`_Tempfile`" +TEMP2FILE="`_Tempfile`" + [ -r "${1}" ] && cat "$1" | cleanup > "${TEMP1FILE}" [ -r "${2}" ] && cat "$2" | cleanup > "${TEMP2FILE}" _Diff "${TEMP1FILE}" "${TEMP2FILE}" -rm -f "${TEMP1FILE}" "${TEMP2FILE}" - +rm -f -- "${TEMP1FILE}" "${TEMP2FILE}" |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:08:33
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv13367 Modified Files: copy_directory.sh Log Message: * Should work with POSIX sh. Index: copy_directory.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/copy_directory.sh,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- copy_directory.sh 5 Jan 2006 18:46:55 -0000 1.5 +++ copy_directory.sh 7 Jul 2007 17:08:30 -0000 1.6 @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh # # $1 - source directory @@ -17,6 +17,7 @@ } + if [ $# -ne 2 -a $# -ne 3 ]; then echo "$0 <src-dir> <dest-dir> [<exclude-pattern>]" >&2 exit 1 @@ -32,4 +33,3 @@ fi copy_directory "${@}" - |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:08:03
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv12926 Modified Files: generate_and_apply_upstream_patches.sh Log Message: * Should work with POSIX sh. * Also ignore .git/ . Index: generate_and_apply_upstream_patches.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/generate_and_apply_upstream_patches.sh,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- generate_and_apply_upstream_patches.sh 28 Dec 2005 18:27:44 -0000 1.7 +++ generate_and_apply_upstream_patches.sh 7 Jul 2007 17:07:59 -0000 1.8 @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh set -e @@ -23,7 +23,7 @@ _Diff "`basename "${COMPONENT}"`-last" \ "`basename "${COMPONENT}"`" \ > "${UPSTREAM_PATCHES_PATH}/`basename "${COMPONENT}"`-${NOW}.patch" || true - _Diff -x CVS -x .svn "`basename "${COMPONENT}"`-last" \ + _Diff -x CVS -x .svn -x .git "`basename "${COMPONENT}"`-last" \ "`basename "${COMPONENT}"`" \ > "${UPSTREAM_PATCHES_PATH}/`basename "${COMPONENT}"`-${NOW}-nocvs.patch" || true popd @@ -35,4 +35,3 @@ [ ! -s "${UPSTREAM_PATCHES_PATH}/`basename "${COMPONENT}"`-${NOW}.patch" ] && rm "${UPSTREAM_PATCHES_PATH}/`basename "${COMPONENT}"`-${NOW}.patch" [ ! -s "${UPSTREAM_PATCHES_PATH}/`basename "${COMPONENT}"`-${NOW}-nocvs.patch" ] && rm "${UPSTREAM_PATCHES_PATH}/`basename "${COMPONENT}"`-${NOW}-nocvs.patch" done - |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:06:51
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv12389 Modified Files: generate_upstream_patches.sh Log Message: * Should work with POSIX sh. * Also exclude .git/ . Index: generate_upstream_patches.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/generate_upstream_patches.sh,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- generate_upstream_patches.sh 28 Dec 2005 18:27:44 -0000 1.8 +++ generate_upstream_patches.sh 7 Jul 2007 17:06:48 -0000 1.9 @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh set -e @@ -23,7 +23,7 @@ _Diff "`basename "${COMPONENT}"`-last" \ "`basename "${COMPONENT}"`" \ > "${UPSTREAM_PATCHES_PATH}/`basename "${COMPONENT}"`-${NOW}.patch" || true - _Diff -x CVS -x .svn "`basename "${COMPONENT}"`-last" \ + _Diff -x CVS -x .svn -x .git "`basename "${COMPONENT}"`-last" \ "`basename "${COMPONENT}"`" \ > "${UPSTREAM_PATCHES_PATH}/`basename "${COMPONENT}"`-${NOW}-nocvs.patch" || true popd @@ -31,4 +31,3 @@ [ ! -s "${UPSTREAM_PATCHES_PATH}/`basename "${COMPONENT}"`-${NOW}.patch" ] && rm "${UPSTREAM_PATCHES_PATH}/`basename "${COMPONENT}"`-${NOW}.patch" [ ! -s "${UPSTREAM_PATCHES_PATH}/`basename "${COMPONENT}"`-${NOW}-nocvs.patch" ] && rm "${UPSTREAM_PATCHES_PATH}/`basename "${COMPONENT}"`-${NOW}-nocvs.patch" done - |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:05:52
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv11930 Modified Files: initial_cvs_checkout.sh Log Message: * Should work with POSIX sh. Index: initial_cvs_checkout.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/initial_cvs_checkout.sh,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- initial_cvs_checkout.sh 25 Oct 2006 08:23:47 -0000 1.12 +++ initial_cvs_checkout.sh 7 Jul 2007 17:05:47 -0000 1.13 @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh # # Check if needed variables are set. @@ -8,7 +8,6 @@ exit 1 fi - # # Test if all required tools are installed. # @@ -20,9 +19,7 @@ fi done - mkdir -p "${UPSTREAM_SANDBOXES_PATH}" - pushd "${UPSTREAM_SANDBOXES_PATH}" if [ ! -d binutils ]; then mkdir binutils @@ -86,4 +83,3 @@ popd fi popd - |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:05:03
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv11484 Modified Files: prepare_toolchain_hacking.sh Log Message: * Should work with POSIX sh. Index: prepare_toolchain_hacking.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/prepare_toolchain_hacking.sh,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- prepare_toolchain_hacking.sh 28 Dec 2005 18:27:44 -0000 1.6 +++ prepare_toolchain_hacking.sh 7 Jul 2007 17:04:58 -0000 1.7 @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh set -e @@ -18,7 +18,6 @@ exit 1 fi - mkdir -- "${1}" pushd "${1}" shift @@ -93,4 +92,3 @@ shift done popd - |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:04:31
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv11019 Modified Files: run_test_build.sh Log Message: * Should work with POSIX sh. * Update documentation a bit. (Though I'm not yet there to put the GIT tree fully into the build machinery.) Index: run_test_build.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- run_test_build.sh 4 Jul 2007 18:18:52 -0000 1.25 +++ run_test_build.sh 7 Jul 2007 17:04:28 -0000 1.26 @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh if [ $# -lt 7 -o $# -gt 8 ]; then echo "$0 target /path/to/build-directory /path/to/vax_toolchain_config ma...@ad... /path/to/build.okay /path/to/build.not-okay /path/to/lockfile {/path/to/testresult_dir}" >&2 @@ -9,7 +9,7 @@ echo "ma...@ad... -- Email address/addresses to send result to. Beware, this is _one_ argument, use quotes" >&2 echo "/path/to/build.okay -- Location to save the build.log to IFF the build went okay" >&2 echo "/path/to/build.not-okay -- Location to save the build.log to IFF the build was unsuccessful" >&2 - echo "/path/to/lockfile -- GLOBAL lockfile for CVS/SVN updates and ALL and ANY builds" >&2 + echo "/path/to/lockfile -- GLOBAL lockfile for CVS/SVN/GIT updates and ALL and ANY builds" >&2 echo "/path/to/testresult_dir -- Results of the test suite are put here. Optional." >&2 exit 1 fi @@ -179,4 +179,3 @@ unlock exit 1 fi - |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:03:17
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv10948 Modified Files: try_patches.sh Log Message: * Should work with POSIX sh. Index: try_patches.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/try_patches.sh,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- try_patches.sh 5 Jan 2006 19:58:14 -0000 1.8 +++ try_patches.sh 7 Jul 2007 17:03:14 -0000 1.9 @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh function remove_leading_zero() { local NUMBER @@ -78,4 +78,3 @@ elif [ $# -eq 4 ]; then try_patches "${1}" "${2}" "${3}" "`remove_leading_zero "${4}"`" fi - |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:02:20
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv10524 Modified Files: vax_toolchain_config Log Message: * Update documentation a bit. Index: vax_toolchain_config =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/vax_toolchain_config,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- vax_toolchain_config 19 Mar 2006 14:49:29 -0000 1.9 +++ vax_toolchain_config 7 Jul 2007 17:02:15 -0000 1.10 @@ -9,8 +9,9 @@ # UPSTREAM_SANDBOXES_PATH # ~~~~~~~~~~~~~~~~~~~~~~~ # Below this directory are checked-out sandboxes of the four important -# upstream CVS sandboxes (binutils, gcc, glibc and ports). This directory -# layout is expected (and prepared by initial_cvs_checkout.sh): +# upstream CVS/SVN/GIT sandboxes (binutils, gcc, glibc + ports, linux). +# This directory layout is expected (and prepared by +# initial_cvs_checkout.sh): # # ${UPSTREAM_SANDBOXES_PATH}/binutils/ # ${UPSTREAM_SANDBOXES_PATH}/binutils/binutils-upstream-HEAD/ @@ -23,6 +24,8 @@ # ${UPSTREAM_SANDBOXES_PATH}/glibc/ports-upstream-HEAD-last/ # ${UPSTREAM_SANDBOXES_PATH}/uclibc/uclibc-upstream-HEAD/ # ${UPSTREAM_SANDBOXES_PATH}/uclibc/uclibc-upstream-HEAD-last/ +# ${UPSTREAM_SANDBOXES_PATH}/linux/linux-HEAD/ +# ${UPSTREAM_SANDBOXES_PATH}/linux/linux-HEAD-last/ # # Initially, the *-HEAD/ and *-HEAD-last/ should contain identical # content. (So please checkout *-HEAD/ and then copy over the content @@ -153,4 +156,3 @@ : export PATH="${PATH}:${VAX_TOOLCHAIN_SCRIPTS}" - |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:01:39
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv10156 Modified Files: update_upstream_cvs_sandboxes.sh Log Message: * This script should work with any POSIX sh. Index: update_upstream_cvs_sandboxes.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/update_upstream_cvs_sandboxes.sh,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- update_upstream_cvs_sandboxes.sh 7 Jul 2007 16:44:07 -0000 1.10 +++ update_upstream_cvs_sandboxes.sh 7 Jul 2007 17:01:35 -0000 1.11 @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh if [ ! -d "${UPSTREAM_SANDBOXES_PATH}" ]; then echo "\$UPSTREAM_SANDBOXES_PATH isn't set--please source vax_toolchain_config to set it" >&2 @@ -14,6 +14,7 @@ fi + # # CVS managed archives # |
From: Jan-Benedict G. <jb...@us...> - 2007-07-07 16:44:13
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv3004 Modified Files: update_upstream_cvs_sandboxes.sh Log Message: * Fix typo. Index: update_upstream_cvs_sandboxes.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/update_upstream_cvs_sandboxes.sh,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- update_upstream_cvs_sandboxes.sh 15 Jan 2006 11:04:17 -0000 1.9 +++ update_upstream_cvs_sandboxes.sh 7 Jul 2007 16:44:07 -0000 1.10 @@ -53,7 +53,7 @@ break else svn cleanup - if [ "${i}" -eq "${MAX_TIES}" ]; then + if [ "${i}" -eq "${MAX_TRIES}" ]; then echo "Failed ${MAX_TRIES} times to update ${COMPONENT}" >&2 [ "${IGNORE_ERRORS}" -eq 0 ] && exit "${RET}" fi @@ -62,4 +62,3 @@ done popd done - |