mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-09 17:10:17 +00:00
8ccd2cb048
[no changelog]
192 lines
5.4 KiB
Python
192 lines
5.4 KiB
Python
from __future__ import annotations
|
|
|
|
import subprocess
|
|
import zlib
|
|
from pathlib import Path
|
|
|
|
from boards import (
|
|
discovery,
|
|
discovery2,
|
|
trezor_1,
|
|
trezor_r_v3,
|
|
trezor_r_v4,
|
|
trezor_r_v6,
|
|
trezor_r_v10,
|
|
trezor_t,
|
|
trezor_t3t1_revE,
|
|
trezor_t3t1_v4,
|
|
)
|
|
|
|
HERE = Path(__file__).parent.resolve()
|
|
|
|
# go up from site_scons to core/
|
|
PROJECT_ROOT = HERE.parent.resolve()
|
|
|
|
|
|
def add_font(
|
|
font_name: str, font: str | None, defines: list[str], sources: list[str]
|
|
) -> None:
|
|
if font is not None:
|
|
defines += [
|
|
"TREZOR_FONT_" + font_name + "_ENABLE=" + font,
|
|
"TREZOR_FONT_" + font_name + '_INCLUDE=\\"' + font.lower() + '.h\\"',
|
|
]
|
|
sourcefile = "embed/lib/fonts/" + font.lower() + ".c"
|
|
if sourcefile not in sources:
|
|
sources.append(sourcefile)
|
|
|
|
|
|
def configure_board(
|
|
model: str,
|
|
features_wanted: list[str],
|
|
env: dict, # type: ignore
|
|
defines: list[str | tuple[str, str]],
|
|
sources: list[str],
|
|
paths: list[str],
|
|
) -> list[str]:
|
|
model_r_version = 10
|
|
model_t3t1_version = "E"
|
|
|
|
if model in ("1",):
|
|
return trezor_1.configure(env, features_wanted, defines, sources, paths)
|
|
elif model in ("T",):
|
|
return trezor_t.configure(env, features_wanted, defines, sources, paths)
|
|
elif model in ("R",):
|
|
if model_r_version == 3:
|
|
return trezor_r_v3.configure(env, features_wanted, defines, sources, paths)
|
|
elif model_r_version == 4:
|
|
return trezor_r_v4.configure(env, features_wanted, defines, sources, paths)
|
|
elif model_r_version == 6:
|
|
return trezor_r_v6.configure(env, features_wanted, defines, sources, paths)
|
|
elif model_r_version == 10:
|
|
return trezor_r_v10.configure(env, features_wanted, defines, sources, paths)
|
|
raise Exception("Unknown model_r_version")
|
|
elif model in ("T3T1",):
|
|
if model_t3t1_version == 4:
|
|
return trezor_t3t1_v4.configure(
|
|
env, features_wanted, defines, sources, paths
|
|
)
|
|
elif model_t3t1_version == "E":
|
|
return trezor_t3t1_revE.configure(
|
|
env, features_wanted, defines, sources, paths
|
|
)
|
|
raise Exception("Unknown model_t3t1_version")
|
|
elif model in ("DISC1",):
|
|
return discovery.configure(env, features_wanted, defines, sources, paths)
|
|
elif model in ("DISC2",):
|
|
return discovery2.configure(env, features_wanted, defines, sources, paths)
|
|
raise Exception("Unknown model")
|
|
|
|
|
|
def get_model_identifier(model: str) -> str:
|
|
if model == "1":
|
|
return "T1B1"
|
|
elif model == "T":
|
|
return "T2T1"
|
|
elif model == "R":
|
|
return "T2B1"
|
|
elif model == "T3T1":
|
|
return "T3T1"
|
|
elif model == "DISC1":
|
|
return "D001"
|
|
elif model == "DISC2":
|
|
return "D002"
|
|
else:
|
|
raise Exception("Unknown model")
|
|
|
|
|
|
def get_version(file: str) -> str:
|
|
major = 0
|
|
minor = 0
|
|
patch = 0
|
|
|
|
file_path = PROJECT_ROOT / file
|
|
with open(file_path, "r") as f:
|
|
for line in f:
|
|
if line.startswith("#define VERSION_MAJOR "):
|
|
major = line.split("VERSION_MAJOR")[1].strip()
|
|
if line.startswith("#define VERSION_MINOR "):
|
|
minor = line.split("VERSION_MINOR")[1].strip()
|
|
if line.startswith("#define VERSION_PATCH "):
|
|
patch = line.split("VERSION_PATCH")[1].strip()
|
|
return f"{major}.{minor}.{patch}"
|
|
|
|
|
|
def get_git_revision_hash() -> str:
|
|
return subprocess.check_output(["git", "rev-parse", "HEAD"]).decode("ascii").strip()
|
|
|
|
|
|
def get_git_revision_short_hash() -> str:
|
|
return (
|
|
subprocess.check_output(["git", "rev-parse", "--short", "HEAD"])
|
|
.decode("ascii")
|
|
.strip()
|
|
)
|
|
|
|
|
|
def get_git_modified() -> bool:
|
|
return (
|
|
subprocess.check_output(["git", "diff", "--name-status"])
|
|
.decode("ascii")
|
|
.strip()
|
|
!= ""
|
|
)
|
|
|
|
|
|
def get_defs_for_cmake(defs: list[str | tuple[str, str]]) -> list[str]:
|
|
result: list[str] = []
|
|
for d in defs:
|
|
if type(d) is tuple:
|
|
result.append(d[0] + "=" + d[1])
|
|
else:
|
|
result.append(d)
|
|
return result
|
|
|
|
|
|
def _compress(data: bytes) -> bytes:
|
|
z = zlib.compressobj(level=9, wbits=-10)
|
|
return z.compress(data) + z.flush()
|
|
|
|
|
|
def embed_binary(obj_program, env, section, target_, file):
|
|
_in = f"embedded_{section}.bin.deflated"
|
|
|
|
def redefine_sym(name):
|
|
src = (
|
|
"_binary_build_firmware_"
|
|
+ _in.replace("/", "_").replace(".", "_")
|
|
+ "_"
|
|
+ name
|
|
)
|
|
dest = (
|
|
"_binary_"
|
|
+ target_.replace("/", "_").replace(".o", "_bin_deflated")
|
|
+ "_"
|
|
+ name
|
|
)
|
|
return f" --redefine-sym {src}={dest}"
|
|
|
|
def compress_action(target, source, env):
|
|
srcf = Path(str(source[0]))
|
|
dstf = Path(str(target[0]))
|
|
compressed = _compress(srcf.read_bytes())
|
|
dstf.write_bytes(compressed)
|
|
return 0
|
|
|
|
compress = env.Command(target=_in, source=file, action=compress_action)
|
|
|
|
obj_program.extend(
|
|
env.Command(
|
|
target=target_,
|
|
source=_in,
|
|
action="$OBJCOPY -I binary -O elf32-littlearm -B arm"
|
|
f" --rename-section .data=.{section}"
|
|
+ redefine_sym("start")
|
|
+ redefine_sym("end")
|
|
+ redefine_sym("size")
|
|
+ " $SOURCE $TARGET",
|
|
)
|
|
)
|
|
|
|
env.Depends(obj_program, compress)
|