We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1668a46 commit 8aadf02Copy full SHA for 8aadf02
selfdrive/selfdrived/selfdrived.py
@@ -117,7 +117,8 @@ def __init__(self, CP=None):
117
# some comma three with NVMe experience NVMe dropouts mid-drive that
118
# cause loggerd to crash on write, so ignore it only on that platform
119
self.ignored_processes = set()
120
- if HARDWARE.get_device_type() == 'tici' and os.path.exists('/dev/nvme0'):
+ nvme_expected = os.path.exists('/dev/nvme0n1') or (not os.path.isfile("/persist/comma/living-in-the-moment"))
121
+ if HARDWARE.get_device_type() == 'tici' and nvme_expected:
122
self.ignored_processes = {'loggerd', }
123
124
# Determine startup event
0 commit comments