mirror of https://github.com/openXC7/prjxray.git
reseg: sort dirs
Signed-off-by: John McMaster <JohnDMcMaster@gmail.com>
This commit is contained in:
parent
49eb2549f9
commit
c0f375fc52
|
|
@ -7,13 +7,13 @@ set -ex
|
|||
FUZDIR=$PWD
|
||||
pushd build
|
||||
|
||||
for f in $(find -name design.bits) ; do
|
||||
for f in $(find -name design.bits |sort) ; do
|
||||
pushd $(dirname $f)
|
||||
python3 $FUZDIR/generate.py
|
||||
popd
|
||||
done
|
||||
popd
|
||||
|
||||
${XRAY_SEGMATCH} -o build/tmp.segbits $(find build -name 'segdata_*.txt')
|
||||
${XRAY_SEGMATCH} -o build/tmp.segbits $(find build -name 'segdata_*.txt' |sort)
|
||||
cat build/tmp.segbits
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue