Package bounded X4 BLE diagnostics and USB mode reader

This commit is contained in:
DCCONSTRUCTIONS
2026-09-10 11:59:00 +03:00
parent b536f0049a
commit 1a2de8df65
12 changed files with 1178 additions and 3 deletions
+11 -3
View File
@@ -16,7 +16,7 @@ sys.path.insert(0, str(REPOSITORY / "scripts/packaging"))
from debian import package # noqa: E402
from fetch_sdk import verify # noqa: E402
VERSION = "0.1.3-3"
VERSION = "0.1.3-4"
WHEELS = {
"aiohappyeyeballs",
"aiohttp",
@@ -152,7 +152,14 @@ def build(output):
0o644,
)
)
for name in ("layout.py", "bootstrap.py", "supervisor.py", "prepare.py"):
for name in (
"layout.py",
"bootstrap.py",
"supervisor.py",
"prepare.py",
"ble_diagnostic.py",
"ble_options.py",
):
files.append(
("usr/lib/mission-core-node/insta360/" + name, (PACKAGING / name).read_bytes(), 0o644)
)
@@ -199,7 +206,8 @@ Section: admin
Priority: optional
Depends: mission-core-node (>= 0.8.16), mission-core-node (<< 0.9.0),
systemd (>= 255), python3 (>= 3.12), python3 (<< 3.13), adduser, udev, polkitd,
libc6 (>= 2.35), libstdc++6 (>= 12), libgcc-s1, zlib1g
libc6 (>= 2.35), libstdc++6 (>= 12), libgcc-s1, zlib1g,
bluez (>= 5.72), python3-dbus, python3-gi
Description: Optional Insta360 X4 control and operator camera integration
Private USB instances and pinned offline runtime for Ubuntu 24.04 amd64.
""".encode()