Functional UART logging both inside and outside dev container

Adds minicom and sudo to the docker image
Switches the shebang line to bash to fix a bug in uart_log.sh when
 inside the container (-n option to read requires bash)
This commit is contained in:
Nick Anstee 2024-05-10 18:05:30 +02:00
parent d8be791cad
commit b61712a01c
2 changed files with 6 additions and 1 deletions

View File

@ -41,6 +41,11 @@ RUN apt-get update \
&& curl \ && curl \
https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu-rm/9-2019q4/gcc-arm-none-eabi-9-2019-q4-major-$(arch)-linux.tar.bz2 | tar -xj -C /src/ https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu-rm/9-2019q4/gcc-arm-none-eabi-9-2019-q4-major-$(arch)-linux.tar.bz2 | tar -xj -C /src/
RUN apt-get update \
&& apt-get install -y \
minicom \
sudo
ENV PATH="${PATH}:/src/gcc-arm-none-eabi-9-2019-q4-major/bin" ENV PATH="${PATH}:/src/gcc-arm-none-eabi-9-2019-q4-major/bin"
COPY --from=rust_build /usr/src/bestool/bestool/target/release/bestool /usr/local/bin/bestool COPY --from=rust_build /usr/src/bestool/bestool/target/release/bestool /usr/local/bin/bestool
COPY . /usr/src COPY . /usr/src

View File

@ -1,4 +1,4 @@
#!/usr/bin/env sh #!/usr/bin/env bash
rightbud=/dev/serial/by-id/usb-wch.cn_USB_Dual_Serial_0123456789-if00 rightbud=/dev/serial/by-id/usb-wch.cn_USB_Dual_Serial_0123456789-if00
leftbud=/dev/serial/by-id/usb-wch.cn_USB_Dual_Serial_0123456789-if02 leftbud=/dev/serial/by-id/usb-wch.cn_USB_Dual_Serial_0123456789-if02