1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00

legacy: remove last mentions of TREZOR_TRANSPORT_V1 (#312)

This commit is contained in:
Kewde 2019-07-08 09:39:46 +00:00 committed by Pavol Rusnak
parent 913b1202f1
commit ec3c0453f0
2 changed files with 1 additions and 2 deletions

View File

@ -60,7 +60,7 @@ If you want to build device firmware, make sure you have the
[GNU ARM Embedded toolchain](https://developer.arm.com/open-source/gnu-toolchain/gnu-rm/downloads) installed. [GNU ARM Embedded toolchain](https://developer.arm.com/open-source/gnu-toolchain/gnu-rm/downloads) installed.
You will also need Python 3.5 or later and [pipenv](https://pipenv.readthedocs.io/en/latest/install/). You will also need Python 3.5 or later and [pipenv](https://pipenv.readthedocs.io/en/latest/install/).
* If you want to build the emulator instead of the firmware, run `export EMULATOR=1 TREZOR_TRANSPORT_V1=1` * If you want to build the emulator instead of the firmware, run `export EMULATOR=1`
* If you want to build with the debug link, run `export DEBUG_LINK=1`. Use this if you want to run the device tests. * If you want to build with the debug link, run `export DEBUG_LINK=1`. Use this if you want to run the device tests.
* When you change these variables, use `script/setup` to clean the repository * When you change these variables, use `script/setup` to clean the repository

View File

@ -14,5 +14,4 @@ if [ "$EMULATOR" = 1 ]; then
"${PYTHON:-python}" script/wait_for_emulator.py "${PYTHON:-python}" script/wait_for_emulator.py
fi fi
export TREZOR_TRANSPORT_V1=1
"${PYTHON:-python}" -m pytest --pyarg trezorlib.tests.device_tests "$@" "${PYTHON:-python}" -m pytest --pyarg trezorlib.tests.device_tests "$@"