Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/traintastic/traintastic-cs-os
Traintastic CS :: Operating System
https://github.com/traintastic/traintastic-cs-os
raspberry-pi-4 traintastic
Last synced: 7 days ago
JSON representation
Traintastic CS :: Operating System
- Host: GitHub
- URL: https://github.com/traintastic/traintastic-cs-os
- Owner: traintastic
- Created: 2024-09-11T22:16:24.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-09-11T22:27:58.000Z (4 months ago)
- Last Synced: 2024-11-07T19:51:55.345Z (about 2 months ago)
- Topics: raspberry-pi-4, traintastic
- Language: Makefile
- Homepage: https://traintastic.org/cs
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Traintastic CS :: Operating System
Traintastic CS consists of three projects:
- [PCB and schemetic](https://github.com/traintastic/traintastic-cs-pcb)
- [Firmware for Raspberry Pi Pico](https://github.com/traintastic/traintastic-cs-firmware)
- Operating System for Raspberry Pi (this project)## Building
The Traintastic CS operating system is Embedded Linux, it is a bare minimum operating system just enough to run [Traintastic](https://github.com/traintastic/traintastic).
The Traintastic CS operating system is build using [Buildroot](https:://buildroot.org).
Buildroot requires a Linux system approx 15GB of disk space, building it takes time, depending on the PC it can take about 1 hour!### Raspberry Pi 4
To build the Traintastic CS operating system for a **Raspberry Pi 4** (all models) run:
```shell
cd buildroot
make BR2_EXTERNAL=../traintastic-cs traintastic_cs_rpi4_defconfig
make all
```