Skip to content

Instantly share code, notes, and snippets.

@5HT
Last active July 19, 2025 22:05
Show Gist options
  • Save 5HT/dcdbf58317090935bacbc2aa043ff516 to your computer and use it in GitHub Desktop.
Save 5HT/dcdbf58317090935bacbc2aa043ff516 to your computer and use it in GitHub Desktop.
RTS 1.0
maxim@raspberrypi:~/depot/bitedits/rts $ tree -d -L 4 .
.
├── apps
│   ├── hello
│   ├── init
│   └── nsh
├── drivers
│   ├── devicetree
│   ├── eeprom
│   ├── i2c
│   ├── i2s
│   ├── pci
│   ├── serial
│   ├── usbdev
│   └── virtio
├── fs
│   ├── binfs
│   ├── romfs
│   └── vfs
├── hal
│   ├── boards
│   │   ├── common
│   │   │   └── rp2350
│   │   └── specific
│   │   └── pico2
│   └── cores
│   ├── common
│   │   ├── armv8-m
│   │   └── bcm2711
│   └── specific
│   ├── qemu
│   └── rp2350
├── include
│   ├── crypto
│   └── sys
├── kernel
│   ├── crypto
│   │   ├── mbedtls
│   │   │   ├── include
│   │   │   └── source
│   │   └── nuttx
│   ├── loader
│   │   └── binfmt
│   ├── mm
│   │   ├── heap
│   │   └── map
│   └── sched
│   ├── clock
│   ├── irq
│   ├── mqueue
│   ├── pthread
│   ├── sched
│   ├── signal
│   └── task
├── libs
│   ├── sched
│   ├── stdio
│   ├── stdlib
│   ├── string
│   │   ├── armv8-a
│   │   └── armv8-m
│   ├── termios
│   └── unistd
└── tools
└── picotool
64 directories
@5HT
Copy link
Author

5HT commented Jul 19, 2025

RTS 1.0 --- це перепакування NuttX у власній ієрархії як приклад реалізації власної системи збірки для опен соурс проєктів.
Мінімальний розмір базової версії RTS 1.0 становить 12 МБ.
Сторінка проєкту: https://bitedits.github.io/rts/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment