source: scripts/patch/binutils-patch.sh@ 99d1a6a

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 99d1a6a was 914669c, checked in by Jim Gifford <clfs@…>, 15 years ago

Updated Binutils Patch. Added Patches to fix Issues with Powerpc

  • Property mode set to 100755
File size: 6.1 KB
Line 
1#!/bin/bash
2# Create a Binutils Patch
3
4# Get Version #
5#
6VERSION=$1
7SOURCEVERSION=$2
8
9# Check Input
10#
11if [ "${VERSION}" = "" -o "${SOURCEVERSION}" = "" ]; then
12 echo "$0 - Binutils_Version"
13 echo "This will Create a Patch for Binutils Binutils_Series Binutils_Version"
14 echo "Example $0 2.19 2.19.1"
15 exit 255
16fi
17
18# Set Patch Directory
19#
20PATCH_DIR=$(pwd -P)/binutils
21
22# Download Binutils Source
23#
24install -d ~/tmp
25cd ~/tmp
26if ! [ -e binutils-${SOURCEVERSION}.tar.bz2 ]; then
27 wget ftp://ftp.gnu.org/gnu/binutils/binutils-${SOURCEVERSION}.tar.bz2
28fi
29
30# Set Patch Number
31#
32cd ~/tmp
33wget http://svn.cross-lfs.org/svn/repos/cross-lfs/trunk/patches/ --no-remove-listing
34PATCH_NUM=$(cat index.html | grep binutils | grep "${SOURCEVERSION}" | grep branch_update | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)
35PATCH_NUM=$(expr ${PATCH_NUM} + 1)
36PATCH_NUM2=$(cat index.html | grep binutils | grep "${SOURCEVERSION}" | grep fixes | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)
37PATCH_NUM2=$(expr ${PATCH_NUM2} + 1)
38rm -f index.html
39
40# Cleanup Directory
41#
42cd ~/tmp
43rm -rf binutils-${SOURCEVERSION} binutils-${SOURCEVERSION}.orig
44tar xvf binutils-${SOURCEVERSION}.tar.bz2
45
46# Get Current Updates from CVS
47#
48cd ~/tmp
49mv binutils-${SOURCEVERSION} binutils-${SOURCEVERSION}.orig
50CURRENTDIR=$(pwd -P)
51FIXEDVERSION=$(echo ${VERSION} | sed -e 's/\./_/g')
52cvs -z 9 -d :pserver:anoncvs@sourceware.org:/cvs/src export -rbinutils-${FIXEDVERSION}-branch binutils
53mv src binutils-${SOURCEVERSION}
54
55# Cleanup
56#
57cd ~/tmp
58DIRS="binutils-${SOURCEVERSION} binutils-${SOURCEVERSION}.orig"
59for DIRECTORY in ${DIRS}; do
60 cd ~/tmp/${DIRECTORY}
61 FILE_LIST=".cvsignore *.gmo"
62 for files in ${FILE_LIST}; do
63 REMOVE=$(find * -name ${files})
64 for file in $REMOVE; do
65 rm -f ${file}
66 done
67 done
68
69 REMOVE=".cvsignore MAINTAINERS COPYING.LIBGLOSS COPYING.NEWLIB README-maintainer-mode depcomp
70 ChangeLog compile ltgcc.m4 lt~obsolete.m4 etc/ChangeLog etc/add-log.el etc/add-log.vi"
71 for file in $REMOVE; do
72 rm -f ${file}
73 done
74 cd ..
75done
76cd ~/tmp/binutils-${SOURCEVERSION}
77rm -f ~/tmp/binutils-${SOURCEVERSION}.orig/md5.sum
78
79# Make Binutils a Release
80#
81cd ~/tmp/binutils-${SOURCEVERSION}
82sed -i 's/# RELEASE=y/RELEASE=y/g' bfd/Makefile.am
83sed -i 's/# RELEASE=y/RELEASE=y/g' bfd/Makefile.in
84
85# Customize the version string, so we know it's patched
86#
87cd ~/tmp/binutils-${SOURCEVERSION}
88DATE_STAMP=$(date +%Y%m%d)
89cd ~/tmp/binutils-${SOURCEVERSION}
90sed -i "s:@PKGVERSION@:(GNU Binutils for Cross-LFS - Retrieved on ${DATE_STAMP}) :" bfd/Makefile.in
91
92# Create Patch
93#
94cd ~/tmp
95install -d ~/patches
96echo "Submitted By: Jim Gifford (jim at cross-lfs dot org)" > ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch
97echo "Date: `date +%m-%d-%Y`" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch
98echo "Initial Package Version: ${SOURCEVERSION}" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch
99echo "Origin: Upstream" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch
100echo "Upstream Status: Applied" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch
101echo "Description: This is a branch update for binutils-${SOURCEVERSION}, and should be" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch
102echo " rechecked periodically." >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch
103echo "" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch
104echo "This patch was created on ${DATE_STAMP}" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch
105echo "" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch
106diff -Naur binutils-${SOURCEVERSION}.orig binutils-${SOURCEVERSION} >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch
107echo "Created ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch."
108
109# Cleanliness is the name of my game!
110#
111unset DATE_STAMP
112
113# Create Another Copy to create fixes patch
114#
115cd ~/tmp
116if [ -e ${PATCH_DIR}/${SOURCEVERSION} ]; then
117 rm -rf binutils-${SOURCEVERSION}.orig
118 cp -ar binutils-${SOURCEVERSION} binutils-${SOURCEVERSION}.orig
119
120 # Apply Patches from directories
121 #
122 cd ~/tmp/binutils-${SOURCEVERSION}
123 PATCH_FILES=$(ls ${PATCH_DIR}/${SOURCEVERSION}/*.patch)
124 if [ "${PATCH_FILES}" != "" ]; then
125 for pfile in ${PATCH_FILES}; do
126 echo "Applying - ${pfile}..."
127 for pvalue in $(seq 0 5); do
128 patch --dry-run -Np${pvalue} -i ${pfile} > /dev/null 2>&1
129 if [ "${?}" = "0" ]; then
130 PVALUE=${pvalue}
131 break
132 fi
133 done
134 if [ "${PVALUE}" != "" ]; then
135 patch -Np${PVALUE} -i ${pfile}
136 else
137 echo "Patch: ${pfile} Failed to Apply..."
138 exit 255
139 fi
140 done
141 fi
142
143 # Cleanup Directory
144 #
145 cd ~/tmp/binutils-${SOURCEVERSION}
146 rm -f $(find * -name "*~")
147 rm -f $(find * -name "*.orig")
148 rm -f $(find * -name "*.rej")
149 rm -f *.orig *~ *.rej
150
151 # Create Patch
152 #
153 cd ~/tmp
154 install -d ~/patches
155 echo "Submitted By: Jim Gifford (jim at cross-lfs dot org)" > ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch
156 echo "Date: `date +%m-%d-%Y`" >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch
157 echo "Initial Package Version: ${VERSION}" >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch
158 echo "Origin: Upstream" >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch
159 echo "Upstream Status: Applied" >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch
160 echo "Description: This Patch contains fixes for binutils-${SOURCEVERSION}, and should be" >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch
161 echo " rechecked periodically." >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch
162 echo "" >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch
163 diff -Naur binutils-${SOURCEVERSION}.orig binutils-${SOURCEVERSION} >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch
164 echo "Created ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch."
165fi
166
167# Cleanup Directory
168#
169cd ~/tmp
170rm -rf binutils-${SOURCEVERSION} binutils-${SOURCEVERSION}.orig
Note: See TracBrowser for help on using the repository browser.