Rename map_renderer -> mapsd (#28580)

This commit is contained in:
Mitchell Goff
2023-06-16 20:12:50 -07:00
committed by GitHub
parent 83d6552a15
commit 6509cde41b
4 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ procs = [
NativeProcess("encoderd", "system/loggerd", ["./encoderd"]),
NativeProcess("loggerd", "system/loggerd", ["./loggerd"], onroad=False, callback=logging),
NativeProcess("modeld", "selfdrive/modeld", ["./modeld"]),
NativeProcess("mapsd", "selfdrive/navd", ["./map_renderer"], enabled=False),
NativeProcess("mapsd", "selfdrive/navd", ["./mapsd"], enabled=False),
NativeProcess("navmodeld", "selfdrive/modeld", ["./navmodeld"], enabled=False),
NativeProcess("sensord", "system/sensord", ["./sensord"], enabled=not PC),
NativeProcess("ui", "selfdrive/ui", ["./ui"], offroad=True, watchdog_max_dt=(5 if not PC else None)),
+1
View File
@@ -1,5 +1,6 @@
moc_*
*.moc
mapsd
map_renderer
libmap_renderer.so
+1 -1
View File
@@ -1,6 +1,6 @@
# navigation
This directory contains two daemons, `navd` and `map_renderer`, which support navigation in the openpilot stack.
This directory contains two daemons, `navd` and `mapsd`, which support navigation in the openpilot stack.
### navd
+1 -1
View File
@@ -17,4 +17,4 @@ if arch in ['larch64', 'x86_64']:
map_env["RPATH"].append(Dir('.').abspath)
map_env["LIBPATH"].append(Dir('.').abspath)
maplib = map_env.SharedLibrary("maprender", ["map_renderer.cc"], LIBS=libs)
map_env.Program("map_renderer", ["main.cc", ], LIBS=[maplib[0].get_path(), ] + libs)
map_env.Program("mapsd", ["main.cc", ], LIBS=[maplib[0].get_path(), ] + libs)