diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2016-12-24 15:39:50 +0100 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2016-12-24 15:39:50 +0100 |
commit | f208bf4c3dfb1bc72339378722259529d81c2f47 (patch) | |
tree | 210502f6ebfecfb85b063305e8ba97416007b7ed | |
parent | 475950120a0274de7201c1cf2e8d8398d24e9b33 (diff) | |
download | eficast-f208bf4c3dfb1bc72339378722259529d81c2f47.tar.gz eficast-f208bf4c3dfb1bc72339378722259529d81c2f47.tar.bz2 eficast-f208bf4c3dfb1bc72339378722259529d81c2f47.zip |
qemu DEVEL_MODE : output kernel info on stdio, handy for init death debug
-rwxr-xr-x | make-boot-image.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make-boot-image.sh b/make-boot-image.sh index d38426d..c1a31c7 100755 --- a/make-boot-image.sh +++ b/make-boot-image.sh @@ -546,5 +546,5 @@ then [ -d "$WORKDIR/mountpoint" ] || mkdir "$WORKDIR/mountpoint" $ROOTCMD umount "$WORKDIR/mountpoint" fi -[ "x$DEVEL_MODE" == "xy" ] && qemu-system-x86_64 -M q35 -m 256 -kernel "$OUTDIR/BOOTX64.EFI" +[ "x$DEVEL_MODE" == "xy" ] && qemu-system-x86_64 -M q35 -m 256 -kernel "$OUTDIR/BOOTX64.EFI" -enable-kvm -serial stdio -append "console=ttyAMA0 console=ttyS0" |