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:
parent
d8be791cad
commit
b61712a01c
|
@ -41,6 +41,11 @@ RUN apt-get update \
|
|||
&& 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/
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y \
|
||||
minicom \
|
||||
sudo
|
||||
|
||||
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 . /usr/src
|
||||
|
|
|
@ -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
|
||||
leftbud=/dev/serial/by-id/usb-wch.cn_USB_Dual_Serial_0123456789-if02
|
||||
|
|
Loading…
Reference in New Issue