boardloader, bootloader: moving embed/common/* to embed/trezorhal/*

This commit is contained in:
Pavol Rusnak 2017-10-08 23:55:05 +02:00
parent 8d3540c858
commit 7bbfba1ac0
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
4 changed files with 3 additions and 3 deletions

View File

@ -70,8 +70,6 @@ SOURCE_STMHAL = [
]
SOURCE_BOARDLOADER = [
'embed/common/vectortable.s',
'embed/common/util.s',
'embed/boardloader/startup.s',
'embed/boardloader/main.c',
]
@ -85,6 +83,8 @@ SOURCE_TREZORHAL = [
'embed/trezorhal/stm32_it.c',
'embed/trezorhal/stm32_system.c',
'embed/trezorhal/rng.c',
'embed/trezorhal/util.s',
'embed/trezorhal/vectortable.s',
]
env = Environment(ENV=os.environ, CFLAGS=ARGUMENTS.get('CFLAGS', ''))

View File

@ -76,7 +76,6 @@ SOURCE_STMHAL = [
]
SOURCE_BOOTLOADER = [
'embed/common/util.s',
'embed/bootloader/startup.S',
'embed/bootloader/header.S',
'embed/bootloader/main.c',
@ -101,6 +100,7 @@ SOURCE_TREZORHAL = [
'embed/trezorhal/usbd_core.c',
'embed/trezorhal/usbd_ctlreq.c',
'embed/trezorhal/usbd_ioreq.c',
'embed/trezorhal/util.s',
]
env = Environment(ENV=os.environ, CFLAGS=ARGUMENTS.get('CFLAGS', ''))