https://github.com/mupq/pqm4
Revision 8582f47bba034524c87d8e1630553d799783a61d authored by rpls on 07 November 2023, 02:01:45 UTC, committed by GitHub on 07 November 2023, 02:01:45 UTC
* Implement new stack measurement HAL API

* update mupq to current master

---------

Co-authored-by: Matthias J. Kannwischer <matthias@kannwischer.eu>
1 parent e21677c
Raw File
Tip revision: 8582f47bba034524c87d8e1630553d799783a61d authored by rpls on 07 November 2023, 02:01:45 UTC
Implement new stack measurement HAL API (#304)
Tip revision: 8582f47
build_everything.py
#!/usr/bin/env python3
"""
Builds all of the binaries without flashing them.
"""
import sys

from interface import parse_arguments, get_platform
from mupq import mupq


if __name__ == "__main__":
    args, rest = parse_arguments()
    platform, settings = get_platform(args)
    with platform:
        mupq.BuildAll(settings).test_all(rest)
back to top