[svn-commits] kpfleming: trunk r2284 - in /trunk: ./
build_tools/make_firmware_object
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Sun Mar 4 22:43:51 MST 2007
Author: kpfleming
Date: Sun Mar 4 23:43:50 2007
New Revision: 2284
URL: http://svn.digium.com/view/zaptel?view=rev&rev=2284
Log:
Merged revisions 2283 via svnmerge from
https://origsvn.digium.com/svn/zaptel/branches/1.4
................
r2283 | kpfleming | 2007-03-04 23:42:41 -0600 (Sun, 04 Mar 2007) | 20 lines
Merged revisions 2280-2282 via svnmerge from
https://origsvn.digium.com/svn/zaptel/branches/1.2
........
r2280 | kpfleming | 2007-03-04 23:34:43 -0600 (Sun, 04 Mar 2007) | 2 lines
ensure that we run objdump in the most generic language possible to avoid complications on non-English systems (issue #9196)
........
r2281 | kpfleming | 2007-03-04 23:40:37 -0600 (Sun, 04 Mar 2007) | 2 lines
remove stray character that my editor decided to add
........
r2282 | kpfleming | 2007-03-04 23:41:30 -0600 (Sun, 04 Mar 2007) | 2 lines
this driver does not use workqueues, so does not need this header (issue #9196)
........
................
Modified:
trunk/ (props changed)
trunk/build_tools/make_firmware_object
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/build_tools/make_firmware_object
URL: http://svn.digium.com/view/zaptel/trunk/build_tools/make_firmware_object?view=diff&rev=2284&r1=2283&r2=2284
==============================================================================
--- trunk/build_tools/make_firmware_object (original)
+++ trunk/build_tools/make_firmware_object Sun Mar 4 23:43:50 2007
@@ -6,7 +6,7 @@
# 2 - output file
# 3 - template output file (used to learn desired format)
-bfdname=`objdump -f ${3} | grep -e "${3}:" | sed "s/.*file format \(.*\)/\1/"`
-bfdarch=`objdump -f ${3} | grep -e "architecture:" | sed "s/.*ture: \(.*\),.*/\1/"`
+bfdname=`LANG=C objdump -f ${3} | grep -e "${3}:" | sed "s/.*file format \(.*\)/\1/"`
+bfdarch=`LANG=C objdump -f ${3} | grep -e "architecture:" | sed "s/.*ture: \(.*\),.*/\1/"`
objcopy -I binary ${1} -B ${bfdarch} -O ${bfdname} ${2} --rename-section .data=.rodata,alloc,load,data,contents,readonly
More information about the svn-commits
mailing list