From: Lauri Kasanen Date: Fri, 28 May 2021 06:34:11 +0000 (+0300) Subject: Add comment about cpu type X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d8ba6e71da87b731259e4d0a09b79d3d556d5e74;p=kvm-minippc.git Add comment about cpu type --- diff --git a/main.c b/main.c index 041d0c7..5012602 100644 --- a/main.c +++ b/main.c @@ -385,6 +385,8 @@ int main(int argc, char **argv) { if (ioctl(vcpu, KVM_GET_SREGS, &sregs) == -1) abort(); + // It defaults to host cpu on POWER5+, which is what we want. + // http://pearpc.sourceforge.net/pvr.html if (ioctl(vcpu, KVM_SET_SREGS, &sregs) == -1) abort();