<message>Introduce a revision tracking system across project files, allowing for easier identification of changes. Update the README files to include instructions for bumping revisions and auto-bumping on commits. Additionally, enhance cloud-init scripts with revision comments for better version control. Modify the dashboard API to improve build status management, including a forced clear option for stuck statuses, enhancing user experience and operational reliability.
9 lines
410 B
Bash
9 lines
410 B
Bash
#!/usr/bin/env bash
|
|
# Revision: 2
|
|
# Called by udev when CM4 in boot mode (0a5c:2711 or 2b8e) is connected.
|
|
# Start the flash service via systemd so it runs under systemd, not udev —
|
|
# otherwise udev kills the process when the device re-enumerates (first→second stage).
|
|
# --no-block: return immediately so udev doesn't wait; the service runs in the background.
|
|
|
|
systemctl --no-block start cm4-flash.service
|