Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bvobart/rtems-demo
Interactive demo for the RTOS survey assignment in the Real-Time Systems course of 2020 at TU Delft.
https://github.com/bvobart/rtems-demo
Last synced: 1 day ago
JSON representation
Interactive demo for the RTOS survey assignment in the Real-Time Systems course of 2020 at TU Delft.
- Host: GitHub
- URL: https://github.com/bvobart/rtems-demo
- Owner: bvobart
- Created: 2020-04-13T20:27:38.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-14T11:51:41.000Z (over 4 years ago)
- Last Synced: 2024-11-12T15:39:10.460Z (2 months ago)
- Language: C
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
# RTEMS Demo
Interactive demo for the RTOS survey assignment in the Real-Time Systems course of 2020 at TU Delft.
## Quickstart
The demo consists of a Docker container preconfigured with everything required to build a few example
applications. Additionally, it is possible to SSH into this container by providing a password as a
build argument. The default password is `rtems-docker`#### Building
```sh
# either
docker build -t rtems-demo .
# or
docker build -t rtems-demo --build-arg password=your-password .
```#### Running
```sh
# either
docker run -it --rm rtems-demo
# or to expose SSH port to port 2222 on the host
docker run -it --rm -p 2222:22 rtems-demo
```