mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
transition to openocd from st-flash
This commit is contained in:
parent
737dc0159f
commit
03309e0381
33
Makefile
33
Makefile
@ -25,6 +25,12 @@ ifeq ($(DISPLAY_VSYNC), 0)
|
||||
CFLAGS += -DDISPLAY_VSYNC=0
|
||||
endif
|
||||
|
||||
ifeq ($(STLINKv21), 1)
|
||||
OPENOCD = openocd -f interface/stlink-v2-1.cfg -c "transport select hla_swd" -f target/stm32f4x.cfg
|
||||
else
|
||||
OPENOCD = openocd -f interface/stlink-v2.cfg -f target/stm32f4x.cfg
|
||||
endif
|
||||
|
||||
## help commands:
|
||||
|
||||
help: ## show this help
|
||||
@ -104,27 +110,30 @@ clean_cross: ## clean mpy-cross build
|
||||
|
||||
## flash commands:
|
||||
|
||||
flash: flash_boardloader flash_bootloader flash_firmware ## flash everything using st-flash
|
||||
flash: flash_boardloader flash_bootloader flash_firmware ## flash everything using OpenOCD
|
||||
|
||||
flash_boardloader: ## flash boardloader using st-flash
|
||||
st-flash write $(BOARDLOADER_BUILD_DIR)/boardloader.bin 0x08000000
|
||||
flash_boardloader: $(BOARDLOADER_BUILD_DIR)/boardloader.bin ## flash boardloader using OpenOCD
|
||||
$(OPENOCD) -c "init; reset halt; flash write_image erase $< 0x08000000; exit"
|
||||
|
||||
flash_bootloader: ## flash bootloader using st-flash
|
||||
st-flash write $(BOOTLOADER_BUILD_DIR)/bootloader.bin 0x08010000
|
||||
flash_bootloader: $(BOOTLOADER_BUILD_DIR)/bootloader.bin ## flash bootloader using OpenOCD
|
||||
$(OPENOCD) -c "init; reset halt; flash write_image erase $< 0x08010000; exit"
|
||||
|
||||
flash_firmware: ## flash firmware using st-flash
|
||||
st-flash write $(FIRMWARE_BUILD_DIR)/firmware.bin 0x08020000
|
||||
flash_firmware: $(FIRMWARE_BUILD_DIR)/firmware.bin ## flash firmware using OpenOCD
|
||||
$(OPENOCD) -c "init; reset halt; flash write_image erase $< 0x08020000; exit"
|
||||
|
||||
flash_firmware0: ## flash firmware0 using st-flash
|
||||
st-flash write $(FIRMWARE_BUILD_DIR)/firmware0.bin 0x08000000
|
||||
flash_firmware0: $(FIRMWARE_BUILD_DIR)/firmware0.bin ## flash firmware0 using OpenOCD
|
||||
$(OPENOCD) -c "init; reset halt; flash write_image erase $< 0x08000000; exit"
|
||||
|
||||
flash_combine: ## flash combined image using st-flash
|
||||
st-flash write $(FIRMWARE_BUILD_DIR)/combined.bin 0x08000000
|
||||
flash_combine: $(FIRMWARE_BUILD_DIR)/combined.bin ## flash combined using OpenOCD
|
||||
$(OPENOCD) -c "init; reset halt; flash write_image erase $< 0x08000000; exit"
|
||||
|
||||
flash_erase: ## erase all sectors in flash bank 0
|
||||
$(OPENOCD) -c "init; reset halt; flash info 0; flash erase_sector 0 0 last; flash erase_check 0; exit"
|
||||
|
||||
## openocd debug commands:
|
||||
|
||||
openocd: ## start openocd which connects to the device
|
||||
openocd -f interface/stlink-v2.cfg -f target/stm32f4x.cfg
|
||||
$(OPENOCD)
|
||||
|
||||
gdb: ## start remote gdb session which connects to the openocd
|
||||
arm-none-eabi-gdb $(FIRMWARE_BUILD_DIR)/firmware.elf -ex 'target remote localhost:3333'
|
||||
|
@ -25,7 +25,7 @@ cd trezor-core
|
||||
#### Debian/Ubuntu
|
||||
|
||||
```sh
|
||||
sudo pip install ed25519 pyblake2
|
||||
sudo -H pip install ed25519 pyblake2
|
||||
|
||||
sudo dpkg --add-architecture i386
|
||||
sudo apt-get update
|
||||
@ -73,7 +73,7 @@ Not supported yet ...
|
||||
### Linux
|
||||
|
||||
For flashing firmware to blank device (without bootloader) by `make flash`,
|
||||
please install [stlink](https://github.com/texane/stlink).
|
||||
or `make flash STLINKv21=1` if using a ST-LINK/V2.1 interface.
|
||||
|
||||
#### Debian/Ubuntu
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user