Last active
July 31, 2025 12:39
-
-
Save 5HT/987739e27e19106811984c5a3e124d49 to your computer and use it in GitHub Desktop.
tree -d -L 4 .
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
tonpa@TRISTELLAR:~/depot/skynetrt/rt$ tree -dL 4 . | |
. | |
├── apps | |
│ ├── init | |
│ ├── nsh | |
│ └── skynet | |
├── drivers | |
│ ├── eeprom | |
│ ├── fdt | |
│ ├── i2c | |
│ ├── pci | |
│ ├── uart | |
│ ├── usbdev | |
│ ├── usbhost | |
│ └── virtio | |
├── etc | |
│ └── init.d | |
├── fs | |
│ ├── binfs | |
│ ├── romfs | |
│ ├── v9fs | |
│ └── vfs | |
├── hal | |
│ ├── boards | |
│ │ ├── pico2 | |
│ │ ├── qemu | |
│ │ ├── sim | |
│ │ └── spresense | |
│ └── chips | |
│ ├── a64 | |
│ ├── armv7-a | |
│ ├── armv7-m | |
│ ├── armv8-m | |
│ └── bcm2711 | |
├── include | |
│ ├── arch | |
│ │ ├── armv7-a | |
│ │ ├── armv8-m | |
│ │ ├── bcm2711 | |
│ │ ├── pico2 | |
│ │ ├── qemu | |
│ │ ├── sim | |
│ │ └── spresense | |
│ ├── clock | |
│ ├── crypto | |
│ ├── environ | |
│ ├── group | |
│ ├── irq | |
│ ├── mbedtls | |
│ ├── mqueue | |
│ ├── nuttx | |
│ │ ├── binfmt | |
│ │ ├── crypto | |
│ │ ├── drivers | |
│ │ ├── fs | |
│ │ ├── lib | |
│ │ ├── mm | |
│ │ ├── net | |
│ │ │ └── netfilter | |
│ │ ├── power | |
│ │ ├── serial | |
│ │ └── timers | |
│ ├── pthread | |
│ ├── sched | |
│ ├── semaphore | |
│ ├── signal | |
│ ├── sys | |
│ ├── task | |
│ ├── timer | |
│ ├── tls | |
│ └── wdog | |
├── kernel | |
│ ├── clock | |
│ ├── crypto | |
│ │ ├── mbedtls | |
│ │ └── nuttx | |
│ ├── env | |
│ ├── irq | |
│ ├── loader | |
│ │ ├── elf | |
│ │ └── flat | |
│ ├── mm | |
│ │ ├── heap | |
│ │ ├── iob | |
│ │ ├── kmm | |
│ │ ├── pager | |
│ │ ├── shm | |
│ │ └── umm | |
│ ├── mqueue | |
│ ├── sched | |
│ ├── semaphore | |
│ ├── signal | |
│ ├── task | |
│ ├── thread | |
│ └── timer | |
├── libs | |
│ ├── libc | |
│ │ ├── fdt | |
│ │ ├── sched | |
│ │ ├── stdio | |
│ │ ├── stdlib | |
│ │ ├── string | |
│ │ │ ├── armv8-a | |
│ │ │ └── armv8-m | |
│ │ ├── termios | |
│ │ └── unistd | |
│ └── libm | |
└── tools | |
106 directories |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment