rpi-hwid 0.0.post5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- rpi_hwid-0.0.post5/.github/workflows/ci.yml +66 -0
- rpi_hwid-0.0.post5/.github/workflows/publish-pypi.yml +69 -0
- rpi_hwid-0.0.post5/.gitignore +63 -0
- rpi_hwid-0.0.post5/LICENSE +202 -0
- rpi_hwid-0.0.post5/PKG-INFO +122 -0
- rpi_hwid-0.0.post5/README.md +98 -0
- rpi_hwid-0.0.post5/RELEASING.md +42 -0
- rpi_hwid-0.0.post5/pyproject.toml +108 -0
- rpi_hwid-0.0.post5/src/rpi_hwid/__init__.py +5 -0
- rpi_hwid-0.0.post5/src/rpi_hwid/_version.py +24 -0
- rpi_hwid-0.0.post5/src/rpi_hwid/artwork/usb.svg +16 -0
- rpi_hwid-0.0.post5/src/rpi_hwid/cli.py +160 -0
- rpi_hwid-0.0.post5/src/rpi_hwid/collect.py +145 -0
- rpi_hwid-0.0.post5/src/rpi_hwid/fpga.py +224 -0
- rpi_hwid-0.0.post5/src/rpi_hwid/labels.py +665 -0
- rpi_hwid-0.0.post5/src/rpi_hwid/model.py +133 -0
- rpi_hwid-0.0.post5/src/rpi_hwid/names.py +96 -0
- rpi_hwid-0.0.post5/src/rpi_hwid/probe.py +416 -0
- rpi_hwid-0.0.post5/src/rpi_hwid/py.typed +0 -0
- rpi_hwid-0.0.post5/src/rpi_hwid/revision.py +97 -0
- rpi_hwid-0.0.post5/tests/conftest.py +96 -0
- rpi_hwid-0.0.post5/tests/test_core.py +270 -0
- rpi_hwid-0.0.post5/tests/test_labels.py +93 -0
- rpi_hwid-0.0.post5/tests/test_probe_collect.py +189 -0
- rpi_hwid-0.0.post5/uv.lock +1068 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
# The same gates as local development (ruff, mypy --strict, pytest with
|
|
4
|
+
# coverage) on every push to main and every pull request. A green run is what
|
|
5
|
+
# "mergeable" means -- and what "releasable" means: publish-pypi.yml is
|
|
6
|
+
# triggered by this workflow COMPLETING on main and proceeds only when it
|
|
7
|
+
# succeeded, so a red push to main is never published. Renaming this workflow
|
|
8
|
+
# breaks that trigger.
|
|
9
|
+
on:
|
|
10
|
+
push:
|
|
11
|
+
branches: [main]
|
|
12
|
+
pull_request:
|
|
13
|
+
|
|
14
|
+
concurrency:
|
|
15
|
+
group: ci-${{ github.ref }}
|
|
16
|
+
cancel-in-progress: true
|
|
17
|
+
|
|
18
|
+
jobs:
|
|
19
|
+
test:
|
|
20
|
+
runs-on: ubuntu-latest
|
|
21
|
+
timeout-minutes: 20
|
|
22
|
+
strategy:
|
|
23
|
+
fail-fast: false
|
|
24
|
+
matrix:
|
|
25
|
+
python-version: ["3.11", "3.12", "3.13"]
|
|
26
|
+
steps:
|
|
27
|
+
- uses: actions/checkout@v5
|
|
28
|
+
with:
|
|
29
|
+
fetch-depth: 0 # full history so hatch-vcs can derive the version
|
|
30
|
+
|
|
31
|
+
- name: Install poppler (pdftoppm, for the label QR check) and a monospace font
|
|
32
|
+
run: |
|
|
33
|
+
sudo apt-get update
|
|
34
|
+
sudo apt-get install -y --no-install-recommends poppler-utils fonts-dejavu-core
|
|
35
|
+
|
|
36
|
+
- uses: astral-sh/setup-uv@v7
|
|
37
|
+
|
|
38
|
+
- name: Install the matrix Python
|
|
39
|
+
run: uv python install ${{ matrix.python-version }}
|
|
40
|
+
|
|
41
|
+
- name: Sync all extras and the dev group
|
|
42
|
+
run: uv sync --all-extras --dev --python ${{ matrix.python-version }}
|
|
43
|
+
|
|
44
|
+
- name: Lint (ruff)
|
|
45
|
+
run: uv run ruff check
|
|
46
|
+
|
|
47
|
+
- name: Type-check (mypy --strict)
|
|
48
|
+
run: uv run mypy
|
|
49
|
+
|
|
50
|
+
- name: Tests + coverage gate
|
|
51
|
+
run: uv run pytest
|
|
52
|
+
|
|
53
|
+
# The two probe files must stay runnable by the oldest python3 a Pi in the
|
|
54
|
+
# field carries (Raspbian stretch: 3.5). Byte-compile them with a real 3.5
|
|
55
|
+
# from the python:3.5 image (uv has no 3.7 build for this runner, and 3.7
|
|
56
|
+
# would not have been the right grammar anyway); the test suite separately
|
|
57
|
+
# refuses f-strings, which 3.5 lacks.
|
|
58
|
+
probe-old-python:
|
|
59
|
+
runs-on: ubuntu-latest
|
|
60
|
+
timeout-minutes: 10
|
|
61
|
+
steps:
|
|
62
|
+
- uses: actions/checkout@v5
|
|
63
|
+
- name: Byte-compile the probes with python 3.5
|
|
64
|
+
run: >-
|
|
65
|
+
docker run --rm -v "$PWD:/src" -w /src python:3.5-slim
|
|
66
|
+
python -W error -m py_compile src/rpi_hwid/probe.py src/rpi_hwid/fpga.py
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
# Every GREEN push to main is a release. The version is derived from git by
|
|
4
|
+
# hatch-vcs (see pyproject.toml): vX.Y at a tag, vX.Y.postN N commits later, so
|
|
5
|
+
# each commit produces a new, unique version -- no manual bump.
|
|
6
|
+
#
|
|
7
|
+
# This workflow is gated on CI: it runs when the "CI" workflow (ruff, mypy,
|
|
8
|
+
# pytest + coverage, the old-python probe check) COMPLETES for a push to main,
|
|
9
|
+
# and the build job only proceeds when that run SUCCEEDED, so a red push to
|
|
10
|
+
# main is never published. The workflow_dispatch path stays for manual re-runs.
|
|
11
|
+
#
|
|
12
|
+
# Publishing uses PyPI Trusted Publishing (OIDC): there is no API token in the
|
|
13
|
+
# repo; the `pypi` environment + trusted publisher are registered (see
|
|
14
|
+
# RELEASING.md).
|
|
15
|
+
on:
|
|
16
|
+
workflow_run:
|
|
17
|
+
workflows: [CI]
|
|
18
|
+
types: [completed]
|
|
19
|
+
branches: [main]
|
|
20
|
+
workflow_dispatch:
|
|
21
|
+
|
|
22
|
+
jobs:
|
|
23
|
+
build:
|
|
24
|
+
# workflow_run fires on EVERY completion (failure and cancelled included);
|
|
25
|
+
# only a successful CI run is a release. Dependent jobs inherit the skip.
|
|
26
|
+
if: >-
|
|
27
|
+
github.event_name == 'workflow_dispatch' ||
|
|
28
|
+
github.event.workflow_run.conclusion == 'success'
|
|
29
|
+
runs-on: ubuntu-latest
|
|
30
|
+
steps:
|
|
31
|
+
- uses: actions/checkout@v5
|
|
32
|
+
with:
|
|
33
|
+
# A workflow_run checkout defaults to the default branch HEAD, which
|
|
34
|
+
# may already be PAST the commit CI just validated. Pin to the SHA
|
|
35
|
+
# CI actually ran on, so the published version is exactly the one
|
|
36
|
+
# that went green.
|
|
37
|
+
ref: ${{ github.event.workflow_run.head_sha || github.sha }}
|
|
38
|
+
fetch-depth: 0 # full history + tags for hatch-vcs version derivation
|
|
39
|
+
|
|
40
|
+
- uses: astral-sh/setup-uv@v7
|
|
41
|
+
|
|
42
|
+
- name: Build sdist + wheel
|
|
43
|
+
run: uv build
|
|
44
|
+
|
|
45
|
+
- name: Show derived version
|
|
46
|
+
run: ls -1 dist/
|
|
47
|
+
|
|
48
|
+
- uses: actions/upload-artifact@v7
|
|
49
|
+
with:
|
|
50
|
+
name: dist
|
|
51
|
+
path: dist/
|
|
52
|
+
|
|
53
|
+
publish:
|
|
54
|
+
needs: build
|
|
55
|
+
runs-on: ubuntu-latest
|
|
56
|
+
# Trusted Publishing requires an OIDC token and a named environment.
|
|
57
|
+
environment: pypi
|
|
58
|
+
permissions:
|
|
59
|
+
id-token: write
|
|
60
|
+
steps:
|
|
61
|
+
- uses: actions/download-artifact@v8
|
|
62
|
+
with:
|
|
63
|
+
name: dist
|
|
64
|
+
path: dist/
|
|
65
|
+
|
|
66
|
+
- name: Publish to PyPI (OIDC trusted publishing)
|
|
67
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
68
|
+
with:
|
|
69
|
+
skip-existing: true
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.egg-info/
|
|
5
|
+
.eggs/
|
|
6
|
+
build/
|
|
7
|
+
dist/
|
|
8
|
+
.venv/
|
|
9
|
+
venv/
|
|
10
|
+
|
|
11
|
+
# Tooling caches
|
|
12
|
+
.pytest_cache/
|
|
13
|
+
.ruff_cache/
|
|
14
|
+
.mypy_cache/
|
|
15
|
+
.cache/
|
|
16
|
+
.uvcache/
|
|
17
|
+
|
|
18
|
+
# Coverage artifacts (pytest-cov / coverage.py)
|
|
19
|
+
.coverage
|
|
20
|
+
.coverage.*
|
|
21
|
+
htmlcov/
|
|
22
|
+
|
|
23
|
+
# hatch-vcs writes this at build/editable-install time; it is derived from git.
|
|
24
|
+
/src/rpi_hwid/_version.py
|
|
25
|
+
|
|
26
|
+
# Sphinx build output (docs/Makefile's BUILDDIR). Read the Docs builds from a
|
|
27
|
+
# clean checkout; a local `make -C docs html` writes here.
|
|
28
|
+
/docs/_build/
|
|
29
|
+
|
|
30
|
+
# Debian build byproducts (dpkg-buildpackage writes to the parent dir; local
|
|
31
|
+
# builds may drop these in-tree).
|
|
32
|
+
/built-debs/
|
|
33
|
+
*.deb
|
|
34
|
+
*.buildinfo
|
|
35
|
+
*.changes
|
|
36
|
+
/debian/.debhelper/
|
|
37
|
+
/debian/files
|
|
38
|
+
/debian/python3-netgear-switch-library/
|
|
39
|
+
/debian/debhelper-build-stamp
|
|
40
|
+
|
|
41
|
+
# Project-local scratch
|
|
42
|
+
tmp/
|
|
43
|
+
|
|
44
|
+
# Claude Code local config and subagent-driven-development scratch
|
|
45
|
+
/.claude/
|
|
46
|
+
/.superpowers/
|
|
47
|
+
|
|
48
|
+
# Overlay-mount character-device dotfiles present in this repo's working tree —
|
|
49
|
+
# never track these.
|
|
50
|
+
/.bash_profile
|
|
51
|
+
/.bashrc
|
|
52
|
+
/.gitconfig
|
|
53
|
+
/.gitmodules
|
|
54
|
+
/.idea
|
|
55
|
+
/.mcp.json
|
|
56
|
+
/.profile
|
|
57
|
+
/.ripgreprc
|
|
58
|
+
/.vscode
|
|
59
|
+
/.zprofile
|
|
60
|
+
/.zshrc
|
|
61
|
+
|
|
62
|
+
# Playwright MCP scratch output
|
|
63
|
+
.playwright-mcp/
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: rpi-hwid
|
|
3
|
+
Version: 0.0.post5
|
|
4
|
+
Summary: Raspberry Pi hardware identity: what a Pi wears, what powers it, which FPGA board it hosts, and print-ready labels for all of it.
|
|
5
|
+
Project-URL: Homepage, https://github.com/mithro/rpi-hwid
|
|
6
|
+
Project-URL: Issues, https://github.com/mithro/rpi-hwid/issues
|
|
7
|
+
Author-email: Tim Ansell <me@mith.ro>
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Keywords: fpga,hat,inventory,labels,poe,raspberry-pi
|
|
11
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: System :: Hardware
|
|
14
|
+
Requires-Python: >=3.11
|
|
15
|
+
Provides-Extra: check
|
|
16
|
+
Requires-Dist: pillow>=10; extra == 'check'
|
|
17
|
+
Requires-Dist: zxing-cpp>=2; extra == 'check'
|
|
18
|
+
Provides-Extra: labels
|
|
19
|
+
Requires-Dist: pillow>=10; extra == 'labels'
|
|
20
|
+
Requires-Dist: reportlab>=4; extra == 'labels'
|
|
21
|
+
Requires-Dist: segno>=1.6; extra == 'labels'
|
|
22
|
+
Requires-Dist: svglib>=1.5; extra == 'labels'
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
|
|
25
|
+
# rpi-hwid — Raspberry Pi hardware identity
|
|
26
|
+
|
|
27
|
+
What is this Raspberry Pi wearing, what powers it, and what is soldered to
|
|
28
|
+
it? `rpi-hwid` answers from the Pi itself, from evidence the firmware and
|
|
29
|
+
kernel already expose but nothing collects: HAT ID EEPROMs (including the
|
|
30
|
+
ones the firmware never reads), the Pi 5's own verdict on its USB-C supply,
|
|
31
|
+
the PMIC's input and RTC-cell voltages, the fan header, the USB tree, and
|
|
32
|
+
which network interfaces are soldered down. A separate module does the same
|
|
33
|
+
for an FPGA board attached to the Pi. A collector runs it over ssh across a
|
|
34
|
+
fleet, and a label generator turns the collected data into sticker labels
|
|
35
|
+
that carry only what cannot change.
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
pip install rpi-hwid # or: uv tool install rpi-hwid[labels]
|
|
39
|
+
|
|
40
|
+
rpi-hwid probe # on a Pi
|
|
41
|
+
rpi-hwid probe --json --fpga --jtag
|
|
42
|
+
rpi-hwid collect --out data/ -J jump.example.org rpi5-netv2 pi@10.21.1.10
|
|
43
|
+
rpi-hwid labels --data data/ --out labels.pdf
|
|
44
|
+
rpi-hwid name --netv2 0x00742c4e63b9085c
|
|
45
|
+
rpi-hwid revision c04170
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
The probe is one dependency-free file that runs on any Pi with python3 3.5
|
|
49
|
+
or later, so it can also be sent over ssh with nothing installed there:
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
ssh pi@host 'python3 -' --json < src/rpi_hwid/probe.py
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
It needs passwordless `sudo` for `i2c-tools` and `vcgencmd`.
|
|
56
|
+
|
|
57
|
+
## What the probe reads, and what each signal proves
|
|
58
|
+
|
|
59
|
+
| signal | tells |
|
|
60
|
+
|---|---|
|
|
61
|
+
| HAT ID EEPROM at `0x50` | what the firmware read: `/proc/device-tree/hat` (official PoE HATs, Digilent Pmod HAT Adaptor, Google VoiceBonnet…) |
|
|
62
|
+
| HAT ID EEPROM at `0x51`–`0x57`, read off the ID bus | boards the firmware **never reads**: Waveshare's PoE M.2 HAT+ (B) puts a well-formed HAT+ EEPROM at `0x52` (product string, pid `0x6d87`, a DT atom naming `pciex1`) |
|
|
63
|
+
| devices on I2C bus 1 | Waveshare PoE HAT (B): SSD1306 at `0x3c` and PCF8574 at `0x20` |
|
|
64
|
+
| USB tree | Waveshare PoE-ETH-USB-HUB-HAT on a Zero: a Terminus `1a40:0101` hub on the root port with an RTL8152 on its port 4 |
|
|
65
|
+
| Pi 5 `max_current` | the firmware's USB-C verdict: 5000 after a PD contract, **3000 both for a 3 A resistor source and for no USB-C source at all** (a HAT on the GPIO 5 V pins), 1500 or 900 for a resistor source advertising that much — so 900/1500 proves an external USB-C supply |
|
|
66
|
+
| Pi 5 PMIC ADC | 5 V input (GPIO-fed HATs 5.1–5.4 V, splitters 4.8–5.0 V) and the RTC cell (about 3 V fitted, under 0.01 V not) |
|
|
67
|
+
| Pi 5 `cooling_fan` node | a fan on the Pi's own header |
|
|
68
|
+
| interface drivers | soldered-down (SoC Ethernet, SDIO radio, the 3B+'s LAN7800) versus removable USB adapters, which are listed with their descriptors |
|
|
69
|
+
| throttle flags | under-voltage now or since boot: all a 3B+, Zero or Pi 4 can say about its supply |
|
|
70
|
+
|
|
71
|
+
The verdict names the power source where the evidence allows (`gpio-poe-hat`,
|
|
72
|
+
`bonnet-poe`, `usbc-supply`, `usbc-pd-supply`) and says `ambiguous` or
|
|
73
|
+
`undetermined` where it does not: an EEPROM-less GPIO PoE HAT on a Pi 5 and
|
|
74
|
+
a 3 A USB-C splitter read identically, as do an EEPROM-less, I2C-less HAT on
|
|
75
|
+
a 3B+ and any splitter. The switch-side 802.3af class narrows those (the
|
|
76
|
+
bonnet is class 3, the M.2 HAT+ (B) class 4, an af-only HAT is never class 4)
|
|
77
|
+
but that is read from the switch, not the Pi.
|
|
78
|
+
|
|
79
|
+
## FPGA boards (`rpi_hwid.fpga`)
|
|
80
|
+
|
|
81
|
+
Kept apart from the Pi probe because few people have one. From what the Pi
|
|
82
|
+
sees without touching the FPGA: a NeTV2 running LitePCIe is PCIe `10ee:7024`
|
|
83
|
+
with one 1 MiB BAR; an SQRL Acorn CLE-215+ is `1e24:021f` (or `10ee:7011`
|
|
84
|
+
under other gateware) with 128 KiB + 64 KiB BARs — BAR sizes come from sysfs
|
|
85
|
+
and a BAR is never mapped, because that wedges a host; a Digilent Arty is its
|
|
86
|
+
own FT2232 with a `210319…` serial. With `--jtag`, openFPGALoader reads the
|
|
87
|
+
idcode and Device DNA over the Arty's FT2232 or the host's GPIO harness
|
|
88
|
+
(libgpiod, pins 27:22:4:17). With `--flash`, an Arty's SPI flash is
|
|
89
|
+
identified by JEDEC id, which reloads the FPGA with openFPGALoader's bridge;
|
|
90
|
+
note the S25FL128S and S25FL127S both answer `0x012018`.
|
|
91
|
+
|
|
92
|
+
## Names
|
|
93
|
+
|
|
94
|
+
`rpi-hwid name` derives short, distinct names from the immutable identifier:
|
|
95
|
+
a NeTV2 from its Device DNA (`netv2-grove`), an Arty from its Digilent serial
|
|
96
|
+
(`arty-hawk`). Both hash first, because the raw identifiers come in
|
|
97
|
+
near-identical clusters. Arty names are a hash *chain* against a registry
|
|
98
|
+
(pass `--names registry.json`), so adding a board never renames an old one.
|
|
99
|
+
|
|
100
|
+
## Labels
|
|
101
|
+
|
|
102
|
+
`rpi-hwid labels` lays out 63.5 × 38.1 mm labels, 21 to an A4 sheet (the
|
|
103
|
+
Avery L7160 grid), from a directory of collected documents: one per Pi
|
|
104
|
+
(model, memory and revision from the revision code, serial up the edge, HAT
|
|
105
|
+
band, a QR per soldered-down MAC), one per FPGA board (name, die, DNA or
|
|
106
|
+
serial with a QR, flash where read), one per removable USB network adapter
|
|
107
|
+
(descriptors, MAC with a QR). Print at 100 %. `--outline` draws the die-cut
|
|
108
|
+
edges for an alignment print on plain paper.
|
|
109
|
+
|
|
110
|
+
The package ships only artwork it may: the public-domain USB trident. A
|
|
111
|
+
`--artwork DIR` may add `raspberry-pi.svg`, `alphamax.png`, `digilent.png`
|
|
112
|
+
and `netv2.svg`, which are trademarks of their owners (the Raspberry Pi
|
|
113
|
+
logo is on the English Wikipedia file page; the Alphamax and Digilent marks
|
|
114
|
+
are their GitHub organisation avatars); without them a label uses the
|
|
115
|
+
maker's name in type.
|
|
116
|
+
|
|
117
|
+
## Origin
|
|
118
|
+
|
|
119
|
+
Worked out on a fleet of Pi Zero W, 3B+, 4 and 5 hosts carrying NeTV2, Acorn
|
|
120
|
+
and Arty boards, powered by a mix of Waveshare PoE HATs and external PoE
|
|
121
|
+
splitters, in September 2026. The rules above are what those boards showed;
|
|
122
|
+
a board that behaves differently is a bug report.
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
# rpi-hwid — Raspberry Pi hardware identity
|
|
2
|
+
|
|
3
|
+
What is this Raspberry Pi wearing, what powers it, and what is soldered to
|
|
4
|
+
it? `rpi-hwid` answers from the Pi itself, from evidence the firmware and
|
|
5
|
+
kernel already expose but nothing collects: HAT ID EEPROMs (including the
|
|
6
|
+
ones the firmware never reads), the Pi 5's own verdict on its USB-C supply,
|
|
7
|
+
the PMIC's input and RTC-cell voltages, the fan header, the USB tree, and
|
|
8
|
+
which network interfaces are soldered down. A separate module does the same
|
|
9
|
+
for an FPGA board attached to the Pi. A collector runs it over ssh across a
|
|
10
|
+
fleet, and a label generator turns the collected data into sticker labels
|
|
11
|
+
that carry only what cannot change.
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
pip install rpi-hwid # or: uv tool install rpi-hwid[labels]
|
|
15
|
+
|
|
16
|
+
rpi-hwid probe # on a Pi
|
|
17
|
+
rpi-hwid probe --json --fpga --jtag
|
|
18
|
+
rpi-hwid collect --out data/ -J jump.example.org rpi5-netv2 pi@10.21.1.10
|
|
19
|
+
rpi-hwid labels --data data/ --out labels.pdf
|
|
20
|
+
rpi-hwid name --netv2 0x00742c4e63b9085c
|
|
21
|
+
rpi-hwid revision c04170
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
The probe is one dependency-free file that runs on any Pi with python3 3.5
|
|
25
|
+
or later, so it can also be sent over ssh with nothing installed there:
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
ssh pi@host 'python3 -' --json < src/rpi_hwid/probe.py
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
It needs passwordless `sudo` for `i2c-tools` and `vcgencmd`.
|
|
32
|
+
|
|
33
|
+
## What the probe reads, and what each signal proves
|
|
34
|
+
|
|
35
|
+
| signal | tells |
|
|
36
|
+
|---|---|
|
|
37
|
+
| HAT ID EEPROM at `0x50` | what the firmware read: `/proc/device-tree/hat` (official PoE HATs, Digilent Pmod HAT Adaptor, Google VoiceBonnet…) |
|
|
38
|
+
| HAT ID EEPROM at `0x51`–`0x57`, read off the ID bus | boards the firmware **never reads**: Waveshare's PoE M.2 HAT+ (B) puts a well-formed HAT+ EEPROM at `0x52` (product string, pid `0x6d87`, a DT atom naming `pciex1`) |
|
|
39
|
+
| devices on I2C bus 1 | Waveshare PoE HAT (B): SSD1306 at `0x3c` and PCF8574 at `0x20` |
|
|
40
|
+
| USB tree | Waveshare PoE-ETH-USB-HUB-HAT on a Zero: a Terminus `1a40:0101` hub on the root port with an RTL8152 on its port 4 |
|
|
41
|
+
| Pi 5 `max_current` | the firmware's USB-C verdict: 5000 after a PD contract, **3000 both for a 3 A resistor source and for no USB-C source at all** (a HAT on the GPIO 5 V pins), 1500 or 900 for a resistor source advertising that much — so 900/1500 proves an external USB-C supply |
|
|
42
|
+
| Pi 5 PMIC ADC | 5 V input (GPIO-fed HATs 5.1–5.4 V, splitters 4.8–5.0 V) and the RTC cell (about 3 V fitted, under 0.01 V not) |
|
|
43
|
+
| Pi 5 `cooling_fan` node | a fan on the Pi's own header |
|
|
44
|
+
| interface drivers | soldered-down (SoC Ethernet, SDIO radio, the 3B+'s LAN7800) versus removable USB adapters, which are listed with their descriptors |
|
|
45
|
+
| throttle flags | under-voltage now or since boot: all a 3B+, Zero or Pi 4 can say about its supply |
|
|
46
|
+
|
|
47
|
+
The verdict names the power source where the evidence allows (`gpio-poe-hat`,
|
|
48
|
+
`bonnet-poe`, `usbc-supply`, `usbc-pd-supply`) and says `ambiguous` or
|
|
49
|
+
`undetermined` where it does not: an EEPROM-less GPIO PoE HAT on a Pi 5 and
|
|
50
|
+
a 3 A USB-C splitter read identically, as do an EEPROM-less, I2C-less HAT on
|
|
51
|
+
a 3B+ and any splitter. The switch-side 802.3af class narrows those (the
|
|
52
|
+
bonnet is class 3, the M.2 HAT+ (B) class 4, an af-only HAT is never class 4)
|
|
53
|
+
but that is read from the switch, not the Pi.
|
|
54
|
+
|
|
55
|
+
## FPGA boards (`rpi_hwid.fpga`)
|
|
56
|
+
|
|
57
|
+
Kept apart from the Pi probe because few people have one. From what the Pi
|
|
58
|
+
sees without touching the FPGA: a NeTV2 running LitePCIe is PCIe `10ee:7024`
|
|
59
|
+
with one 1 MiB BAR; an SQRL Acorn CLE-215+ is `1e24:021f` (or `10ee:7011`
|
|
60
|
+
under other gateware) with 128 KiB + 64 KiB BARs — BAR sizes come from sysfs
|
|
61
|
+
and a BAR is never mapped, because that wedges a host; a Digilent Arty is its
|
|
62
|
+
own FT2232 with a `210319…` serial. With `--jtag`, openFPGALoader reads the
|
|
63
|
+
idcode and Device DNA over the Arty's FT2232 or the host's GPIO harness
|
|
64
|
+
(libgpiod, pins 27:22:4:17). With `--flash`, an Arty's SPI flash is
|
|
65
|
+
identified by JEDEC id, which reloads the FPGA with openFPGALoader's bridge;
|
|
66
|
+
note the S25FL128S and S25FL127S both answer `0x012018`.
|
|
67
|
+
|
|
68
|
+
## Names
|
|
69
|
+
|
|
70
|
+
`rpi-hwid name` derives short, distinct names from the immutable identifier:
|
|
71
|
+
a NeTV2 from its Device DNA (`netv2-grove`), an Arty from its Digilent serial
|
|
72
|
+
(`arty-hawk`). Both hash first, because the raw identifiers come in
|
|
73
|
+
near-identical clusters. Arty names are a hash *chain* against a registry
|
|
74
|
+
(pass `--names registry.json`), so adding a board never renames an old one.
|
|
75
|
+
|
|
76
|
+
## Labels
|
|
77
|
+
|
|
78
|
+
`rpi-hwid labels` lays out 63.5 × 38.1 mm labels, 21 to an A4 sheet (the
|
|
79
|
+
Avery L7160 grid), from a directory of collected documents: one per Pi
|
|
80
|
+
(model, memory and revision from the revision code, serial up the edge, HAT
|
|
81
|
+
band, a QR per soldered-down MAC), one per FPGA board (name, die, DNA or
|
|
82
|
+
serial with a QR, flash where read), one per removable USB network adapter
|
|
83
|
+
(descriptors, MAC with a QR). Print at 100 %. `--outline` draws the die-cut
|
|
84
|
+
edges for an alignment print on plain paper.
|
|
85
|
+
|
|
86
|
+
The package ships only artwork it may: the public-domain USB trident. A
|
|
87
|
+
`--artwork DIR` may add `raspberry-pi.svg`, `alphamax.png`, `digilent.png`
|
|
88
|
+
and `netv2.svg`, which are trademarks of their owners (the Raspberry Pi
|
|
89
|
+
logo is on the English Wikipedia file page; the Alphamax and Digilent marks
|
|
90
|
+
are their GitHub organisation avatars); without them a label uses the
|
|
91
|
+
maker's name in type.
|
|
92
|
+
|
|
93
|
+
## Origin
|
|
94
|
+
|
|
95
|
+
Worked out on a fleet of Pi Zero W, 3B+, 4 and 5 hosts carrying NeTV2, Acorn
|
|
96
|
+
and Arty boards, powered by a mix of Waveshare PoE HATs and external PoE
|
|
97
|
+
splitters, in September 2026. The rules above are what those boards showed;
|
|
98
|
+
a board that behaves differently is a bug report.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Releasing
|
|
2
|
+
|
|
3
|
+
This project is a **rolling release**. There are no manual version bumps: the
|
|
4
|
+
version is derived from `git describe` by `hatch-vcs` — `X.Y` at a `vX.Y`
|
|
5
|
+
tag, `X.Y.postN` N commits after it — and **every green push to `main`
|
|
6
|
+
publishes a new package** automatically:
|
|
7
|
+
|
|
8
|
+
- `.github/workflows/ci.yml` — runs the gates (ruff, mypy --strict, pytest with
|
|
9
|
+
coverage) on every push and PR. A green run is what "mergeable" means, and it
|
|
10
|
+
is what triggers the release workflow.
|
|
11
|
+
- `.github/workflows/publish-pypi.yml` — builds and uploads the wheel + sdist to
|
|
12
|
+
PyPI when CI **succeeds** on `main` (`workflow_run`; a failed or cancelled CI
|
|
13
|
+
run publishes nothing, and the checkout is pinned to the SHA CI validated).
|
|
14
|
+
|
|
15
|
+
Merges to `main` use `--no-ff` merge commits so history stays linear per PR.
|
|
16
|
+
|
|
17
|
+
## Tags
|
|
18
|
+
|
|
19
|
+
Tags are the only human input to the version. `v0.0` sits on the root commit
|
|
20
|
+
(so `git describe` works from the start of history, per the repo-setup
|
|
21
|
+
guidance). To cut a new series, push an annotated `vX.Y` tag on `main` (a
|
|
22
|
+
GitHub tag ruleset only admits `vXX.ZZZ`-shaped tags) — the next green CI run
|
|
23
|
+
publishes `X.Y`, and every commit after it `X.Y.postN`. Never move or delete a
|
|
24
|
+
tag that has been published from.
|
|
25
|
+
|
|
26
|
+
## One-time human setup
|
|
27
|
+
|
|
28
|
+
Done ONCE by a maintainer. **No secret or key is ever committed to the repo.**
|
|
29
|
+
Until this is done, the publish workflow runs but its upload step fails safely.
|
|
30
|
+
|
|
31
|
+
1. Create the project `rpi-hwid` on https://pypi.org, or let the first
|
|
32
|
+
trusted-publisher upload create it via a *pending publisher*.
|
|
33
|
+
2. On PyPI, add a **Trusted Publisher** to the project with:
|
|
34
|
+
- Owner: `mithro`
|
|
35
|
+
- Repository: `rpi-hwid`
|
|
36
|
+
- Workflow filename: `publish-pypi.yml`
|
|
37
|
+
- Environment name: `pypi`
|
|
38
|
+
3. In the GitHub repo, the **Environment** named `pypi` exists (created at
|
|
39
|
+
repo setup). No secrets needed — OIDC handles auth.
|
|
40
|
+
|
|
41
|
+
After this, the next green push to `main` uploads to PyPI. `skip-existing:
|
|
42
|
+
true` makes re-runs idempotent.
|