19 lines
495 B
Markdown
19 lines
495 B
Markdown
# My Kernel
|
|
A bodged together mess that resembles something like a kernel.
|
|
|
|
## ELF Symbols
|
|
Qemu's `-kernel` does not expose the symbol table to the kernel. To retrieve this table, use `--net`
|
|
|
|
## launch-qemu.sh
|
|
This is the main way of launching the kernel.
|
|
|
|
Some options:
|
|
### --net
|
|
Launch the kernel over the network using GRUB.
|
|
|
|
First build the netdir:
|
|
```bash
|
|
grub-mknetdir --net-directory=netdir --subdir=/boot/grub -d /usr/lib/grub/i386-pc
|
|
```
|
|
Now the `--net` option should work as expected
|