Lines Matching +full:use +full:- +full:ram +full:- +full:code
4 (2) mkdir -p .../initrd/boot/defaults
9 (7) find . | sort | cpio -o -H newc | gzip > /tmp/initrd.cpio
11 (9) qemu-system-x86_64 -kernel ~/vmlinuz-5.19.0-051900-generic \
12 -initrd /tmp/initrd.cpio \
13 -m 256m -nographic \
14 -monitor telnet::4444,server,nowait -serial stdio \
15 -append "console=ttyS0"
16 (though you may need more than 256M of ram to actually boot FreeBSD and do
22 use make install.
28 For #8, see https://kernel.ubuntu.com/~kernel-ppa/mainline/ to download
33 qemu-system-aarch64 -m 1024 -cpu cortex-a57 -M virt \
34 -kernel ~/linuxboot/arm64/kernel/boot/vmlinuz-5.19.0-051900-generic \
35 -initrd ~/linuxboot/arm64/initrd.img -m 256m -nographic \
36 -monitor telnet::4444,server,nowait -serial stdio \
37 -append "console=ttyAMA0"
41 Add -g -G to have gdb stop and wait for the debugger. This is useful for
43 code changes). If you set the breakpoint for the trampoline and it never hits,
44 then there's likely no RAM there and you got the PA to load to wrong. When
45 debugging the trampiline and up to that, use gdb /boot/loader. When debugging
46 the kernel, use kernel.full to get all the debugging. hbreak panic() is useful