Fix doc links broken by the openpilot/ restructure (#38467)

This commit is contained in:
Zayan Khan
2026-08-07 13:41:07 -04:00
committed by GitHub
parent 2f4981045b
commit ff9c703289
4 changed files with 12 additions and 7 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
# Run openpilot with webcam on PC
## Setup openpilot
- Follow [this readme](../README.md) to install and build the requirements
- Follow [this readme](/tools/README.md) to install and build the requirements
## Connect the hardware
- Connect the camera first
+1 -1
View File
@@ -4,7 +4,7 @@
## Installation
Once you've [set up the openpilot environment](../README.md), this command will download PlotJuggler and install our plugins:
Once you've [set up the openpilot environment](/tools/README.md), this command will download PlotJuggler and install our plugins:
`cd openpilot/tools/plotjuggler && ./juggle.py --install`
+1 -1
View File
@@ -5,7 +5,7 @@ Welcome to the first part of the comma CTF!
* there's 2 flags in each segment, with roughly increasing difficulty
* everything you'll need to find the flags is in the openpilot repo
* grep is also your friend
* first, [setup](https://github.com/commaai/openpilot/tree/master/openpilot/tools#setup-your-pc) your PC
* first, [setup](https://github.com/commaai/openpilot/tree/master/tools) your PC
* read the docs & checkout out the tools in openpilot/tools/
* tip: once you get the replay and UI up, start by familiarizing yourself with seeking in replay
+9 -4
View File
@@ -45,6 +45,14 @@ Learn about the openpilot ecosystem and tools by playing our [CTF](/tools/CTF.md
## Directory Structure
```
├── car_porting/ # Tools for porting new cars
├── release/ # Scripts for building openpilot releases
└── scripts/ # Miscellaneous scripts
```
Development tools such as cabana, plotjuggler, and replay live in [openpilot/tools/](/openpilot/tools/):
```
├── cabana/ # View and plot CAN messages from drives or in realtime
├── camerastream/ # Cameras stream over the network
@@ -52,8 +60,5 @@ Learn about the openpilot ecosystem and tools by playing our [CTF](/tools/CTF.md
├── lib/ # Libraries to support the tools and reading openpilot logs
├── plotjuggler/ # A tool to plot openpilot logs
├── replay/ # Replay drives and mock openpilot services
── scripts/ # Miscellaneous scripts
├── serial/ # Tools for using the comma serial
├── sim/ # Run openpilot in a simulator
└── webcam/ # Run openpilot on a PC with webcams
── sim/ # Run openpilot in a simulator
```