aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README4
-rwxr-xr-xbuild.sh3
-rwxr-xr-xlaunch-qemu.sh2
-rw-r--r--stable-commits8
4 files changed, 6 insertions, 11 deletions
diff --git a/README b/README
index f90630d..732161a 100644
--- a/README
+++ b/README
@@ -28,14 +28,14 @@ Prepare guest OS
# cd /home/user/AMDSEV/output/qemu-output
# qemu-img create -f qcow2 ubuntu-img.qcow2 30G (create empty qcow2 file)
-# sudo ./launch-qemu.sh -hda ubuntu-img.qcow2 -nosev -cdrom <your_iso_image> -vnc 1 -novirtio
+# sudo ./launch-qemu.sh -hda ubuntu-img.qcow2 -nosev -cdrom <your_iso_image> -vnc 1
The installer GUI can be accessed via vnc port 1. Follow the installation screen
to complete the installation and reboot the guest with newly installed image.
3) Install SEV aware guest kernel image
-SEV aware guest kernel deb packages is available in /home/user/AMDSEV/output/tip
+SEV aware guest kernel deb packages is available in /home/user/AMDSEV/output/kvm
directory.
a) Boot the guest image
diff --git a/build.sh b/build.sh
index db09890..bfc8479 100755
--- a/build.sh
+++ b/build.sh
@@ -94,7 +94,7 @@ build_qemu()
fetch_qemu
fi
cd $BUILD_DIR/qemu
- run_cmd "./configure --target-list=x86_64-softmmu \
+ run_cmd "./configure --target-list=x86_64-softmmu --enable-trace-backend=log\
--prefix=$OUTPUT_DIR/qemu-output"
run_cmd "make -j$(getconf _NPROCESSORS_ONLN)"
run_cmd "make -j$(getconf _NPROCESSORS_ONLN) install"
@@ -109,6 +109,5 @@ dep_install ()
dep_install
build_kernel "kvm"
-build_kernel "tip"
build_qemu
build_ovmf
diff --git a/launch-qemu.sh b/launch-qemu.sh
index a065110..3c088cc 100755
--- a/launch-qemu.sh
+++ b/launch-qemu.sh
@@ -14,7 +14,7 @@ UEFI_BIOS_VARS="`pwd`/OVMF_VARS.fd"
#VNC_PORT=""
AUTOSTART="1"
ALLOW_DEBUG="0"
-USE_VIRTIO="1"
+USE_VIRTIO="0"
usage() {
echo "$0 [options]"
diff --git a/stable-commits b/stable-commits
index 0188613..ccde016 100644
--- a/stable-commits
+++ b/stable-commits
@@ -4,15 +4,11 @@
# hypervisor commit
KVM_GIT_URL=https://github.com/AMDESE/kvm.git
-KVM_KERNEL_COMMIT=sev-v8-p2
-
-# guest kernel commit
-TIP_GIT_URL=https://github.com/AMDESE/tip.git
-TIP_KERNEL_COMMIT=sev-v7-p1
+KVM_KERNEL_COMMIT=sev-v9-p2
# qemu commit
QEMU_GIT_URL=https://github.com/AMDESE/qemu.git
-QEMU_COMMIT=v5-wip-2
+QEMU_COMMIT=v6-wip-1
# guest bios
EDK2_GIT_URL=https://github.com/tianocore/edk2.git