mirror of https://github.com/openXC7/prjxray.git
Merge pull request #1640 from dnltz/WIP/dnltz/parts_fixups
Minor fixups for #1627
This commit is contained in:
commit
3bbb46bbf3
|
|
@ -99,7 +99,7 @@ Step 3
|
|||
|
||||
The project needs to know which device is now available and which fabric it
|
||||
uses. Because some devices share the same fabric, this mapping needs to be
|
||||
done manuelly. Edit the device.yaml file for the used family under
|
||||
done manually. Edit the device.yaml file for the used family under
|
||||
settings/<familiy>/device.yaml be adding the device-fabric mapping:
|
||||
|
||||
::
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ export XRAY_ROI_GRID_Y2="51"
|
|||
|
||||
source $(dirname ${BASH_SOURCE[0]})/../utils/environment.sh
|
||||
|
||||
env=`python3 ${XRAY_UTILS_DIR}/create_environment.py`
|
||||
env=$(python3 ${XRAY_UTILS_DIR}/create_environment.py)
|
||||
ENV_RET=$?
|
||||
if [[ $ENV_RET != 0 ]] ; then
|
||||
return $ENV_RET
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ export XRAY_IOI3_TILES="RIOI3_X105Y9 LIOI3_X0Y9"
|
|||
|
||||
source $(dirname ${BASH_SOURCE[0]})/../utils/environment.sh
|
||||
|
||||
env=`python3 ${XRAY_UTILS_DIR}/create_environment.py`
|
||||
env=$(python3 ${XRAY_UTILS_DIR}/create_environment.py)
|
||||
ENV_RET=$?
|
||||
if [[ $ENV_RET != 0 ]] ; then
|
||||
return $ENV_RET
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ export XRAY_ROI_GRID_Y2="51"
|
|||
|
||||
source $(dirname ${BASH_SOURCE[0]})/../utils/environment.sh
|
||||
|
||||
env=`python3 ${XRAY_UTILS_DIR}/create_environment.py`
|
||||
env=$(python3 ${XRAY_UTILS_DIR}/create_environment.py)
|
||||
ENV_RET=$?
|
||||
if [[ $ENV_RET != 0 ]] ; then
|
||||
return $ENV_RET
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ export XRAY_ROI_GRID_Y2="156"
|
|||
|
||||
source $(dirname ${BASH_SOURCE[0]})/../utils/environment.sh
|
||||
|
||||
env=`python3 ${XRAY_UTILS_DIR}/create_environment.py`
|
||||
env=$(python3 ${XRAY_UTILS_DIR}/create_environment.py)
|
||||
ENV_RET=$?
|
||||
if [[ $ENV_RET != 0 ]] ; then
|
||||
return $ENV_RET
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ export XRAY_ROI_GRID_Y2="155"
|
|||
|
||||
source $(dirname ${BASH_SOURCE[0]})/../utils/environment.sh
|
||||
|
||||
env=`python3 ${XRAY_UTILS_DIR}/create_environment.py`
|
||||
env=$(python3 ${XRAY_UTILS_DIR}/create_environment.py)
|
||||
ENV_RET=$?
|
||||
if [[ $ENV_RET != 0 ]] ; then
|
||||
return $ENV_RET
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ export XRAY_ROI_GRID_Y2="51"
|
|||
|
||||
source $(dirname ${BASH_SOURCE[0]})/../utils/environment.sh
|
||||
|
||||
env=`python3 ${XRAY_UTILS_DIR}/create_environment.py`
|
||||
env=$(python3 ${XRAY_UTILS_DIR}/create_environment.py)
|
||||
ENV_RET=$?
|
||||
if [[ $ENV_RET != 0 ]] ; then
|
||||
return $ENV_RET
|
||||
|
|
|
|||
Loading…
Reference in New Issue