1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-16 04:29:08 +00:00

Include trezor-storage before micropython.

This commit is contained in:
andrew 2019-01-11 20:40:40 +01:00 committed by Pavol Rusnak
parent 1c0946f562
commit bddb72d76a
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 2 additions and 6 deletions

View File

@ -10,9 +10,6 @@ SOURCE_MOD = []
PYOPT = '1'
# modtrezorconfig
CPPPATH_MOD += [
'vendor/trezor-storage/c',
]
SOURCE_MOD += [
'embed/extmod/modtrezorconfig/modtrezorconfig.c',
'vendor/trezor-storage/c/norcow.c',
@ -330,6 +327,7 @@ env.Replace(
'embed/firmware',
'embed/trezorhal',
'embed/extmod/modtrezorui',
'vendor/trezor-storage/c',
'vendor/micropython',
'vendor/micropython/lib/stm32lib/STM32F4xx_HAL_Driver/Inc',
'vendor/micropython/lib/stm32lib/CMSIS/STM32F4xx/Include',

View File

@ -9,9 +9,6 @@ SOURCE_MOD = []
LIBS_MOD = []
# modtrezorconfig
CPPPATH_MOD += [
'vendor/trezor-storage/c',
]
SOURCE_MOD += [
'embed/extmod/modtrezorconfig/modtrezorconfig.c',
'vendor/trezor-storage/c/norcow.c',
@ -299,6 +296,7 @@ env.Replace(
'.',
'embed/unix',
'embed/extmod/modtrezorui',
'vendor/trezor-storage/c',
'vendor/micropython',
'vendor/micropython/ports/unix',
'vendor/micropython/lib/mp-readline',