466357f5c2
This revision of DAHDI-Tools is the base revision for the switch to git. git-svn-id: http://svn.astersk.org/svn/dahdi/tools/tools/trunk@9159
12 lines
282 B
Bash
Executable File
12 lines
282 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# make an object file from a raw binary firmware file
|
|
# arguments:
|
|
# 1 - firmware file
|
|
# 2 - output file
|
|
|
|
bfdname=@BDFNAME@
|
|
bfdarch=@BDFARCH@
|
|
|
|
objcopy -I binary ${1} -B ${bfdarch} -O ${bfdname} ${2} --rename-section .data=.rodata,alloc,load,data,contents,readonly
|