Fixed reference design for ML605 revE
[reconos.git] / tools / reconos_bin2xdevcfg.sh
blobe4811fc16565179f0582ccb33556ccd0a5d5ae35
1 #!/bin/sh
3 # ____ _____
4 # ________ _________ ____ / __ \/ ___/
5 # / ___/ _ \/ ___/ __ \/ __ \/ / / /\__ \
6 # / / / __/ /__/ /_/ / / / / /_/ /___/ /
7 # /_/ \___/\___/\____/_/ /_/\____//____/
8 #
9 # ======================================================================
11 # project: ReconOS
12 # author: Christoph RĂ¼thing, University of Paderborn
13 # description: This script simply reverses the byte order of a file.
15 # ======================================================================
17 if [ ! -f $1 ]
18 then
19 echo "ERROR: Input file not found"
20 exit
23 python "$RECONOS/tools/python/reverse_byte_order.py" $1 > $2