X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=virt-what.in;h=ed08daefa291a28223dd95f7d18c541103469488;hb=215017d61304ac3638548bd9c14d9d2b69a8fde9;hp=f2c0b905f2df058a540e6cda1e5355964f8fd063;hpb=91eb213e9d0be8b6c0fa3568331b8fa953b3299f;p=virt-what.git diff --git a/virt-what.in b/virt-what.in index f2c0b90..ed08dae 100644 --- a/virt-what.in +++ b/virt-what.in @@ -30,19 +30,20 @@ set -u root='' skip_qemu_kvm=false +skip_lkvm=false VERSION="@VERSION@" -have_cpuinfo() { +have_cpuinfo () { test -e "${root}/proc/cpuinfo" } -fail() { +fail () { echo "virt-what: $1" >&2 exit 1 } -usage() { +usage () { echo "virt-what [options]" echo "Options:" echo " --help Display this help" @@ -215,6 +216,7 @@ elif [ -d "${root}/proc/xen" ]; then echo xen-domU fi skip_qemu_kvm=true + skip_lkvm=true elif [ -f "${root}/sys/hypervisor/type" ] && grep -q "xen" "${root}/sys/hypervisor/type"; then # Ordinary kernel with pv_ops. There does not seem to be @@ -259,6 +261,12 @@ if ! "$skip_qemu_kvm"; then fi fi +if ! "$skip_lkvm"; then + if [ "$cpuid" = "LKVMLKVMLKVM" ]; then + echo lkvm + fi +fi + # Check for Docker. if [ -f "${root}/.dockerinit" ]; then echo docker