wip
This commit is contained in:
3
selfdrive/clearpilot/notes.txt
Normal file
3
selfdrive/clearpilot/notes.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
example of using stdin and stdout as a message buffer:
|
||||
|
||||
selfdrive/manager/build.py
|
||||
@@ -53,6 +53,7 @@ def build(spinner: Spinner, dirty: bool = False, minimal: bool = False) -> None:
|
||||
pass
|
||||
|
||||
if scons.returncode == 0:
|
||||
Path('/data/openpilot/prebuilt').touch()
|
||||
break
|
||||
|
||||
if scons.returncode != 0:
|
||||
|
||||
@@ -76,9 +76,9 @@ Sidebar::Sidebar(QWidget *parent) : QFrame(parent), onroad(false), flag_pressed(
|
||||
|
||||
themeConfiguration = {
|
||||
{0, {"stock", {QColor(255, 255, 255)}}},
|
||||
{1, {"frog_theme", {QColor(23, 134, 68)}}},
|
||||
{2, {"tesla_theme", {QColor(0, 72, 255)}}},
|
||||
{3, {"stalin_theme", {QColor(255, 0, 0)}}}
|
||||
{1, {"frog_theme", {QColor(255, 255, 255)}}},
|
||||
{2, {"tesla_theme", {QColor(255, 255, 255)}}},
|
||||
{3, {"stalin_theme", {QColor(255, 255, 255)}}}
|
||||
};
|
||||
|
||||
for (auto &[key, themeData] : themeConfiguration) {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ -f /TICI ] && [ ! -f _spinner ]; then
|
||||
cp qt/spinner_larch64 _spinner
|
||||
if [ -f /TICI ] && [ ! -f qt/spinner ]; then
|
||||
cp qt/spinner_larch64 qt/spinner
|
||||
fi
|
||||
|
||||
exec ./_spinner "$1"
|
||||
exec ./qt/spinner "$1"
|
||||
|
||||
Reference in New Issue
Block a user