This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:24.10 AS tools | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| gcc-13 \ | |
| g++-13 \ | |
| gcc-13-aarch64-linux-gnu \ | |
| g++-13-aarch64-linux-gnu \ | |
| binutils-aarch64-linux-gnu \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Default device path | |
| DEFAULT_DEVICE="/dev/ttyUSB0" | |
| DEFAULT_VIRT_DEVICE="/tmp/virtual_tty" | |
| # Function to display usage information | |
| usage() { | |
| echo "Usage: $0 [OPTIONS]" | |
| echo "Creates a virtual TTY connected to a real serial device with bidirectional logging." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [settings] | |
| arch=x86_64 | |
| build_type=Release | |
| compiler=gcc | |
| compiler.cppstd=gnu17 | |
| compiler.libcxx=libstdc++11 | |
| compiler.version=13 | |
| os=Linux | |
| [conf] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export | |
| export_sources | |
| config_options | |
| configure | |
| requirements | |
| build_requirements | |
| validate_build | |
| validate | |
| package_id | |
| layout |
OlderNewer