Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.08 KB

File metadata and controls

38 lines (32 loc) · 1.08 KB

Kernel Dev/Debug Environment

.
├── disk // setting up a boot disk
│   ├── apps
│   │   └── redis
│   │       ├── run-bench.sh
│   │       ├── start-redis.sh
│   │       └── stop-redis.sh
│   ├── disk-setup.sh
│   └── interfaces
├── gdb // gdb tools and scripts
│   └── gdb-setup.sh
├── kernel // kernel tools and scripts
│   ├── kernel-text.py
│   └── kernel-build-debuggable.sh
├── kernel_module // kernel module tools and scripts
│   └── Makefile
├── linux // create this
├── Makefile
├── qemu // qemu tools and scripts
│   ├── qemu-boot.sh
│   └── qemu-kill.sh
└── readme.md // this file

Prerequisites:

- gdb
- qemu
- linux-kernel

Useful link