diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 57893391bc..24616f733a 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -29,7 +29,7 @@ jobs: - name: Install dependencies run: | - sudo apt-get install --no-install-recommends --assume-yes shellcheck parallel + sudo apt-get install --no-install-recommends --assume-yes shellcheck parallel libcap-dev python -m pip install --upgrade pip pip install poetry diff --git a/core/Dockerfile b/core/Dockerfile index e036e6a8af..5a906c1cde 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -37,7 +37,7 @@ RUN /home/pi/tools/install-static-binaries.sh # Generation of python virtual environment for our libraries and services FROM base AS install-services-and-libs -RUN apt update && apt install -y --no-install-recommends g++ +RUN apt update && apt install -y --no-install-recommends g++ libcap-dev # UV installation ADD https://astral.sh/uv/install.sh /uv-installer.sh diff --git a/core/frontend/src/components/autopilot/FirmwareManager.vue b/core/frontend/src/components/autopilot/FirmwareManager.vue index cd63fba7c6..e981188226 100644 --- a/core/frontend/src/components/autopilot/FirmwareManager.vue +++ b/core/frontend/src/components/autopilot/FirmwareManager.vue @@ -113,7 +113,7 @@ label="Board" hint="If no board is chosen the system will try to flash the currently running board." class="ma-1 pa-0" - @change="chosen_vehicle = null" + @change="clearFirmwareSelection()" />
+
+ + Installing firmware + - Installing firmware. Please wait. +
+
+ {{ log.data.replace(/\r/g, '\n') }}
+
+
@@ -221,7 +247,6 @@