Home | History | Annotate | Download | only in compile

Lines Matching refs:input

4 # Convert an input to a TFTP image loadable by the IBM PowerPC OpenBIOS.
12 echo usage: $0 input image 1>&2
16 input=$1; shift
25 file=$( ${FILE} $input )
28 start=`${OBJDUMP} -f ${input} | ${AWK} '/start address/ { print $NF }'`
30 ${OBJCOPY} -O binary ${input} ${input}.bin.$$
38 cp ${input} ${input}.bin.$$
42 size=$(${STAT} -f '%z' ${input}.bin.$$)
69 } > ${input}.hdr.$$
72 cat ${input}.hdr.$$ ${input}.bin.$$ > ${output}
74 cp ${input}.bin.$$ ${output}
75 dd if=${input}.hdr.$$ of=${output} conv=notrunc
78 rm -f ${input}.hdr.$$ ${input}.bin.$$