From 021914386e15371a7f5a37eb5aa57b1843e7c6ff Mon Sep 17 00:00:00 2001 From: Louis Solofrizzo Date: Thu, 25 Apr 2019 09:35:10 +0200 Subject: [PATCH] Makefile: Enable ukl-hybrid mode by default for examples See https://github.com/Ne02ptzero/whiterose/commit/b4d6cab6f65c5d03420d428b549be0a6c9c55d58 for more information Signed-off-by: Louis Solofrizzo --- unikernel-demo/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/unikernel-demo/Makefile b/unikernel-demo/Makefile index 395f9324..6257935c 100644 --- a/unikernel-demo/Makefile +++ b/unikernel-demo/Makefile @@ -11,6 +11,12 @@ all: rmdir tmp_mnt qemu: ../../disk.img + qemu-system-x86_64 -enable-kvm -s -m 1G -nographic -cpu host\ + -kernel ../../../whiterose/arch/x86/boot/bzImage\ + -append "console=ttyS0 ukl-hybrid quiet root=/dev/sda"\ + -hda ../../disk.img + +qemu-ukl: ../../disk.img qemu-system-x86_64 -enable-kvm -s -m 1G -nographic -cpu host\ -kernel ../../../whiterose/arch/x86/boot/bzImage\ -append "console=ttyS0 ukl quiet root=/dev/sda"\