Repository : ssh://git@diktynna/doc
On branches: backup-redmine/2020-06-06,master
commit 9554cdfea77179c72840be02d65cdd441f52848b Author: Sven Eckelmann sven@narfation.org Date: Fri May 22 07:46:52 2020 +0000
doc: open-mesh/Kernel_hacking_Debian_image: switch to new meson build system for qboot
9554cdfea77179c72840be02d65cdd441f52848b open-mesh/Kernel_hacking_Debian_image.textile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/open-mesh/Kernel_hacking_Debian_image.textile b/open-mesh/Kernel_hacking_Debian_image.textile index 39730f6..23ae11e 100644 --- a/open-mesh/Kernel_hacking_Debian_image.textile +++ b/open-mesh/Kernel_hacking_Debian_image.textile @@ -312,7 +312,9 @@ The (sea)bios used by qemu is nice to boot all kind of legacy images but reduces
<pre><code class="shell"> git clone https://github.com/bonzini/qboot.git -make -C qboot +cd qboot +meson build && ninja -C build +cd .. </code></pre>
h2. Building the batman-adv module @@ -343,7 +345,7 @@ The BASE_IMG is of course no longer the same because a new image "debian.img" wa
<pre><code class="shell"> BASE_IMG=debian.img -BOOTARGS+=("-bios" "qboot/bios.bin") +BOOTARGS+=("-bios" "qboot/build/bios.bin") BOOTARGS+=("-kernel" "linux-next/arch/x86/boot/bzImage") BOOTARGS+=("-append" "root=/dev/vda rw console=hvc0 nokaslr tsc=reliable no_timer_check noreplace-smp rootfstype=ext4 rcupdate.rcu_expedited=1 reboot=t pci=lastbus=0 i8042.direct=1 i8042.dumbkbd=1 i8042.nopnp=1 i8042.noaux=1") BOOTARGS+=("-device" "virtconsole,chardev=charconsole0,id=console0")