https://github.com/embeddedos/linux
Linux Development.
https://github.com/embeddedos/linux
kernel linux qemu virtualization
Last synced: 11 months ago
JSON representation
Linux Development.
- Host: GitHub
- URL: https://github.com/embeddedos/linux
- Owner: EmbeddedOS
- Created: 2023-03-17T15:58:42.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-06T16:50:42.000Z (over 1 year ago)
- Last Synced: 2024-07-08T15:14:27.041Z (over 1 year ago)
- Topics: kernel, linux, qemu, virtualization
- Language: C
- Homepage:
- Size: 662 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Linux
- This repository develops various entities in Embedded Linux Systems, from Hardware -> Kernel -> User-Space applications.
- For the hardware, we focus on QEMU emulator to emulate hardware components.
- The repository structure:
```text
.
├── docs # General documentations.
│ ├── *.md
│ ├── video # Documentations from videos, Youtube, etc.
│ │ └── *.md
│ └── wiki # https://wiki.osdev.org/ or Wikipedia, etc.
│ └── *.md
├── hw # Hardware code, emulator etc.
│ └── qemu # QEMU emulator hardware components.
│ └── *.c, *.h, */
├── kernel # Kernel modules, drivers, sub-systems.
│ ├── examples # Example code of basic features.
│ │ └── *.c, *.h, */
│ └── *.c, *.h, */
├── Makefile # Global make file to build system.
├── README.md # README for the repository.
└── usr # User application codes.
├── examples # Example code for basic features.
│ └── *.c, *.h, */
└── *.c, *.h, */
```
## Utilities
- `modinfo`: Show module info, description, license, module parameters.