Extend gateware ident for zynq #346
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: M-Labs/artiq-zynq#346
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "mwojcik/artiq-zynq:gateware_ident"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Would close #227
Gateware/Firmware version is displayed in format
{artiq version};{zynq revision};{variant name}
artiq version would be the one from the flake lock, used to build the most of the gateware
e.g.
9.9102+270a417.beta;1eb39aef;master
would make finding issues in customers' SoCs a little bit easier (rather than saying "please update" regardless of the situation)
probably could be backported to release-7 and 8
4488cc75e9
toacc8581cb0
We can do that as an interim solution, but eventually we should just merge this repos into
artiq
and run the same firmware on all devices.@ -386,6 +389,7 @@
binutils-arm
pre-commit
];
VERSIONEER_ZYNQ_REV="${zynqRev}";
VERSIONEER_
is historical. Just call itZYNQ_REV
.@ -127,2 +127,3 @@
ident = self.__class__.__name__
ident = "{};{};{}".format(
get_version(),
I don't think we need the ARTIQ version? It is defined by the flake.lock of the Zynq revision.
Exact revision maybe not, but I think it would be valuable to at least have the major number to check at a glance.
acc8581cb0
to716a5924d1