move clocksd to system/ (#24761)

old-commit-hash: ca682b389d
taco
Adeeb Shihadeh 3 years ago committed by GitHub
parent 33136c3f89
commit b249f40f0c
  1. 7
      SConstruct
  2. 6
      release/files_common
  3. 2
      selfdrive/manager/process_config.py
  4. 0
      system/clocksd/.gitignore
  5. 0
      system/clocksd/SConscript
  6. 0
      system/clocksd/clocksd.cc

@ -378,8 +378,10 @@ Export('rednose_config')
SConscript(['rednose/SConscript']) SConscript(['rednose/SConscript'])
# Build system services # Build system services
SConscript([
SConscript(['system/proclogd/SConscript']) 'system/clocksd/SConscript',
'system/proclogd/SConscript',
])
if arch != "Darwin": if arch != "Darwin":
SConscript(['system/logcatd/SConscript']) SConscript(['system/logcatd/SConscript'])
@ -402,7 +404,6 @@ SConscript(['selfdrive/controls/lib/lateral_mpc_lib/SConscript'])
SConscript(['selfdrive/controls/lib/longitudinal_mpc_lib/SConscript']) SConscript(['selfdrive/controls/lib/longitudinal_mpc_lib/SConscript'])
SConscript(['selfdrive/boardd/SConscript']) SConscript(['selfdrive/boardd/SConscript'])
SConscript(['selfdrive/clocksd/SConscript'])
SConscript(['selfdrive/loggerd/SConscript']) SConscript(['selfdrive/loggerd/SConscript'])

@ -119,9 +119,9 @@ selfdrive/car/tesla/*.py
selfdrive/car/toyota/*.py selfdrive/car/toyota/*.py
selfdrive/car/volkswagen/*.py selfdrive/car/volkswagen/*.py
selfdrive/clocksd/.gitignore system/clocksd/.gitignore
selfdrive/clocksd/SConscript system/clocksd/SConscript
selfdrive/clocksd/clocksd.cc system/clocksd/clocksd.cc
selfdrive/debug/*.py selfdrive/debug/*.py

@ -21,7 +21,7 @@ procs = [
DaemonProcess("manage_athenad", "selfdrive.athena.manage_athenad", "AthenadPid"), DaemonProcess("manage_athenad", "selfdrive.athena.manage_athenad", "AthenadPid"),
# due to qualcomm kernel bugs SIGKILLing camerad sometimes causes page table corruption # due to qualcomm kernel bugs SIGKILLing camerad sometimes causes page table corruption
NativeProcess("camerad", "selfdrive/camerad", ["./camerad"], unkillable=True, callback=driverview), NativeProcess("camerad", "selfdrive/camerad", ["./camerad"], unkillable=True, callback=driverview),
NativeProcess("clocksd", "selfdrive/clocksd", ["./clocksd"]), NativeProcess("clocksd", "system/clocksd", ["./clocksd"]),
NativeProcess("dmonitoringmodeld", "selfdrive/modeld", ["./dmonitoringmodeld"], enabled=(not PC or WEBCAM), callback=driverview), NativeProcess("dmonitoringmodeld", "selfdrive/modeld", ["./dmonitoringmodeld"], enabled=(not PC or WEBCAM), callback=driverview),
NativeProcess("logcatd", "system/logcatd", ["./logcatd"]), NativeProcess("logcatd", "system/logcatd", ["./logcatd"]),
NativeProcess("encoderd", "selfdrive/loggerd", ["./encoderd"]), NativeProcess("encoderd", "selfdrive/loggerd", ["./encoderd"]),

Loading…
Cancel
Save