summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgrehan <grehan@FreeBSD.org>2012-10-27 02:10:45 +0000
committergrehan <grehan@FreeBSD.org>2012-10-27 02:10:45 +0000
commited9d132c4e9238eb85db69fb4223ddea58b61fed (patch)
tree9b0474f7f463e52169cf1d9b3e0caae8d4b34778
parentdc37578ed255be09cc4e4fcd2ebf48781c91eabc (diff)
downloadFreeBSD-src-ed9d132c4e9238eb85db69fb4223ddea58b61fed.zip
FreeBSD-src-ed9d132c4e9238eb85db69fb4223ddea58b61fed.tar.gz
Rename vmmctl to bhyvectl. 'vmmctl' came from a pre-bhyve
internal codebase at NetApp. No need for it to have an unrelated name to the other userspace utils. Reviewed by: neel Obtained from: NetApp
-rw-r--r--usr.sbin/Makefile.amd642
-rw-r--r--usr.sbin/bhyvectl/Makefile (renamed from usr.sbin/vmmctl/Makefile)4
-rw-r--r--usr.sbin/bhyvectl/bhyvectl.c (renamed from usr.sbin/vmmctl/vmmctl.c)0
-rwxr-xr-xusr.sbin/bhyvectl/sample.sh75
-rwxr-xr-xusr.sbin/vmmctl/sample.sh75
5 files changed, 78 insertions, 78 deletions
diff --git a/usr.sbin/Makefile.amd64 b/usr.sbin/Makefile.amd64
index e8f3bc0..5fbf86d 100644
--- a/usr.sbin/Makefile.amd64
+++ b/usr.sbin/Makefile.amd64
@@ -32,5 +32,5 @@ SUBDIR+= spkrtest
.if ${MK_SYSINSTALL} != "no"
SUBDIR+= sade
.endif
-SUBDIR+= vmmctl
+SUBDIR+= bhyvectl
SUBDIR+= zzz
diff --git a/usr.sbin/vmmctl/Makefile b/usr.sbin/bhyvectl/Makefile
index a1654df..9fde12c 100644
--- a/usr.sbin/vmmctl/Makefile
+++ b/usr.sbin/bhyvectl/Makefile
@@ -2,8 +2,8 @@
# $FreeBSD$
#
-PROG= vmmctl
-SRCS= vmmctl.c
+PROG= bhyvectl
+SRCS= bhyvectl.c
NO_MAN=
diff --git a/usr.sbin/vmmctl/vmmctl.c b/usr.sbin/bhyvectl/bhyvectl.c
index d5e0503..d5e0503 100644
--- a/usr.sbin/vmmctl/vmmctl.c
+++ b/usr.sbin/bhyvectl/bhyvectl.c
diff --git a/usr.sbin/bhyvectl/sample.sh b/usr.sbin/bhyvectl/sample.sh
new file mode 100755
index 0000000..356bd5f
--- /dev/null
+++ b/usr.sbin/bhyvectl/sample.sh
@@ -0,0 +1,75 @@
+#!/bin/sh
+
+# $FreeBSD$
+
+BHYVECTL="sudo ./bhyvectl"
+VMNAME=sample
+
+${BHYVECTL} --vm=${VMNAME} --create
+${BHYVECTL} --vm=${VMNAME} --set-lowmem=128 --set-highmem=256
+${BHYVECTL} --vm=${VMNAME} --get-lowmem --get-highmem
+
+CR0_PE=$((1 << 0))
+CR0_PG=$((1 << 31))
+CR0=$(($CR0_PE | $CR0_PG))
+${BHYVECTL} --vm=${VMNAME} --set-cr0=${CR0} --get-cr0
+
+# XXX this is bogus the value of %cr3 should come from the loader
+CR3=0
+${BHYVECTL} --vm=${VMNAME} --set-cr3=${CR3} --get-cr3
+
+CR4_PAE=$((1 << 5))
+CR4=$((${CR4_PAE}))
+${BHYVECTL} --vm=${VMNAME} --set-cr4=${CR4} --get-cr4
+
+DR7=0x00000400 # Table 9-1 from Intel Architecture Manual 3A
+${BHYVECTL} --vm=${VMNAME} --set-dr7=${DR7} --get-dr7
+
+#
+# XXX the values of rsp and rip are bogus and should come from the loader.
+#
+RSP=0xa5a5a5a5
+RIP=0x0000bfbfbfbf0000
+RFLAGS=0x2
+${BHYVECTL} --vm=${VMNAME} --set-rsp=${RSP} --get-rsp
+${BHYVECTL} --vm=${VMNAME} --set-rip=${RIP} --get-rip
+${BHYVECTL} --vm=${VMNAME} --set-rflags=${RFLAGS} --get-rflags
+
+# Set "hidden" state of %cs descriptor to indicate long mode code segment.
+#
+# Note that this should match the contents of the entry pointed to by the
+# segment selector in the GDTR.
+#
+${BHYVECTL} --vm=${VMNAME} --set-desc-cs --desc-access=0x00002098 --get-desc-cs
+
+# Set "hidden" state of all data descriptors to indicate a usable segment.
+# The only useful fields are the "Present" and "Descriptor Type" bits.
+${BHYVECTL} --vm=${VMNAME} --set-desc-ds --desc-access=0x00000090 --get-desc-ds
+${BHYVECTL} --vm=${VMNAME} --set-desc-es --desc-access=0x00000090 --get-desc-es
+${BHYVECTL} --vm=${VMNAME} --set-desc-fs --desc-access=0x00000090 --get-desc-fs
+${BHYVECTL} --vm=${VMNAME} --set-desc-gs --desc-access=0x00000090 --get-desc-gs
+${BHYVECTL} --vm=${VMNAME} --set-desc-ss --desc-access=0x00000090 --get-desc-ss
+
+#
+# Set the code segment selector to point to entry at offset 8 in the GDTR.
+#
+${BHYVECTL} --vm=${VMNAME} --set-cs=0x0008 --get-cs
+
+# Set all the remaining data segment selectors to point to entry at offset
+# 16 in the GDTR.
+${BHYVECTL} --vm=${VMNAME} --set-ds=0x0010 --get-ds
+${BHYVECTL} --vm=${VMNAME} --set-es=0x0010 --get-es
+${BHYVECTL} --vm=${VMNAME} --set-fs=0x0010 --get-fs
+${BHYVECTL} --vm=${VMNAME} --set-gs=0x0010 --get-gs
+${BHYVECTL} --vm=${VMNAME} --set-ss=0x0010 --get-ss
+
+# XXX the value of the GDTR should come from the loader.
+# Set the GDTR
+GDTR_BASE=0xffff0000
+GDTR_LIMIT=0x10
+${BHYVECTL} --vm=${VMNAME} --set-desc-gdtr --desc-base=${GDTR_BASE} --desc-limit=${GDTR_LIMIT} --get-desc-gdtr
+
+${BHYVECTL} --vm=${VMNAME} --set-pinning=0 --get-pinning
+${BHYVECTL} --vm=${VMNAME} --set-pinning=-1 --get-pinning
+
+${BHYVECTL} --vm=${VMNAME} --destroy
diff --git a/usr.sbin/vmmctl/sample.sh b/usr.sbin/vmmctl/sample.sh
deleted file mode 100755
index f38d0da..0000000
--- a/usr.sbin/vmmctl/sample.sh
+++ /dev/null
@@ -1,75 +0,0 @@
-#!/bin/sh
-
-# $FreeBSD$
-
-VMMCTL="sudo ./vmmctl"
-VMNAME=sample
-
-${VMMCTL} --vm=${VMNAME} --create
-${VMMCTL} --vm=${VMNAME} --set-lowmem=128 --set-highmem=256
-${VMMCTL} --vm=${VMNAME} --get-lowmem --get-highmem
-
-CR0_PE=$((1 << 0))
-CR0_PG=$((1 << 31))
-CR0=$(($CR0_PE | $CR0_PG))
-${VMMCTL} --vm=${VMNAME} --set-cr0=${CR0} --get-cr0
-
-# XXX this is bogus the value of %cr3 should come from the loader
-CR3=0
-${VMMCTL} --vm=${VMNAME} --set-cr3=${CR3} --get-cr3
-
-CR4_PAE=$((1 << 5))
-CR4=$((${CR4_PAE}))
-${VMMCTL} --vm=${VMNAME} --set-cr4=${CR4} --get-cr4
-
-DR7=0x00000400 # Table 9-1 from Intel Architecture Manual 3A
-${VMMCTL} --vm=${VMNAME} --set-dr7=${DR7} --get-dr7
-
-#
-# XXX the values of rsp and rip are bogus and should come from the loader.
-#
-RSP=0xa5a5a5a5
-RIP=0x0000bfbfbfbf0000
-RFLAGS=0x2
-${VMMCTL} --vm=${VMNAME} --set-rsp=${RSP} --get-rsp
-${VMMCTL} --vm=${VMNAME} --set-rip=${RIP} --get-rip
-${VMMCTL} --vm=${VMNAME} --set-rflags=${RFLAGS} --get-rflags
-
-# Set "hidden" state of %cs descriptor to indicate long mode code segment.
-#
-# Note that this should match the contents of the entry pointed to by the
-# segment selector in the GDTR.
-#
-${VMMCTL} --vm=${VMNAME} --set-desc-cs --desc-access=0x00002098 --get-desc-cs
-
-# Set "hidden" state of all data descriptors to indicate a usable segment.
-# The only useful fields are the "Present" and "Descriptor Type" bits.
-${VMMCTL} --vm=${VMNAME} --set-desc-ds --desc-access=0x00000090 --get-desc-ds
-${VMMCTL} --vm=${VMNAME} --set-desc-es --desc-access=0x00000090 --get-desc-es
-${VMMCTL} --vm=${VMNAME} --set-desc-fs --desc-access=0x00000090 --get-desc-fs
-${VMMCTL} --vm=${VMNAME} --set-desc-gs --desc-access=0x00000090 --get-desc-gs
-${VMMCTL} --vm=${VMNAME} --set-desc-ss --desc-access=0x00000090 --get-desc-ss
-
-#
-# Set the code segment selector to point to entry at offset 8 in the GDTR.
-#
-${VMMCTL} --vm=${VMNAME} --set-cs=0x0008 --get-cs
-
-# Set all the remaining data segment selectors to point to entry at offset
-# 16 in the GDTR.
-${VMMCTL} --vm=${VMNAME} --set-ds=0x0010 --get-ds
-${VMMCTL} --vm=${VMNAME} --set-es=0x0010 --get-es
-${VMMCTL} --vm=${VMNAME} --set-fs=0x0010 --get-fs
-${VMMCTL} --vm=${VMNAME} --set-gs=0x0010 --get-gs
-${VMMCTL} --vm=${VMNAME} --set-ss=0x0010 --get-ss
-
-# XXX the value of the GDTR should come from the loader.
-# Set the GDTR
-GDTR_BASE=0xffff0000
-GDTR_LIMIT=0x10
-${VMMCTL} --vm=${VMNAME} --set-desc-gdtr --desc-base=${GDTR_BASE} --desc-limit=${GDTR_LIMIT} --get-desc-gdtr
-
-${VMMCTL} --vm=${VMNAME} --set-pinning=0 --get-pinning
-${VMMCTL} --vm=${VMNAME} --set-pinning=-1 --get-pinning
-
-${VMMCTL} --vm=${VMNAME} --destroy
OpenPOWER on IntegriCloud