mirror of
https://github.com/churchers/vm-bhyve.git
synced 2025-12-12 09:51:02 +01:00
Add bhyveload_loader and also vtcon list to "vm info"
This commit is contained in:
@@ -49,7 +49,7 @@
|
|||||||
#
|
#
|
||||||
guest::load(){
|
guest::load(){
|
||||||
local _iso="$1"
|
local _iso="$1"
|
||||||
local _args _command _timeout _grub_opt
|
local _args _command _timeout _grub_opt _bsd_loader
|
||||||
|
|
||||||
# all loaders have same console and wired memory options
|
# all loaders have same console and wired memory options
|
||||||
[ -z "${VM_OPT_FOREGROUND}" ] && _args="-c ${_com}"
|
[ -z "${VM_OPT_FOREGROUND}" ] && _args="-c ${_com}"
|
||||||
@@ -63,6 +63,10 @@ guest::load(){
|
|||||||
_command="bhyveload"
|
_command="bhyveload"
|
||||||
_args="${_args}${_args:+ }-m ${_memory} -e autoboot_delay=${_timeout}"
|
_args="${_args}${_args:+ }-m ${_memory} -e autoboot_delay=${_timeout}"
|
||||||
|
|
||||||
|
# have a custom guest loader specified?
|
||||||
|
config::get "_bsd_loader" "bhyveload_loader"
|
||||||
|
[ -n "${_bsd_loader}" ] && _args="${_args} -l ${_bsd_loader}"
|
||||||
|
|
||||||
if [ -n "${_iso}" ]; then
|
if [ -n "${_iso}" ]; then
|
||||||
_args="${_args} -d ${_iso}"
|
_args="${_args} -d ${_iso}"
|
||||||
else
|
else
|
||||||
|
|||||||
27
lib/vm-info
27
lib/vm-info
@@ -208,6 +208,9 @@ info::guest_show(){
|
|||||||
while read _port; do
|
while read _port; do
|
||||||
echo "${_INDENT}${_INDENT}${_port%%=*}: ${_port##*=}"
|
echo "${_INDENT}${_INDENT}${_port%%=*}: ${_port##*=}"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# virtio-console devices
|
||||||
|
info::guest_vtcon
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -223,6 +226,30 @@ info::guest_show(){
|
|||||||
echo ""
|
echo ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# display any virtio consoles
|
||||||
|
#
|
||||||
|
info::guest_vtcon(){
|
||||||
|
local _INDENT=" "
|
||||||
|
local _console _num=0
|
||||||
|
|
||||||
|
config::get "_console" "virt_console0"
|
||||||
|
[ -z "${_console}" ] && return 0
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
while [ -n "${_console}" -a ${_num} -lt 16 ]; do
|
||||||
|
# if set to "yes/on/1", just use the console number as port name
|
||||||
|
case "${_console}" in
|
||||||
|
[Yy][Ee][Ss]|[Oo][Nn]|1) _console="${_num}" ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
echo "${_INDENT}vtcon${_num}: ${VM_DS_PATH}/${_name}/vtcon.${_console}"
|
||||||
|
|
||||||
|
_num=$((_num + 1))
|
||||||
|
config::get "_console" "virt_console${_num}"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
# display zfs snapshot/origin data
|
# display zfs snapshot/origin data
|
||||||
#
|
#
|
||||||
info::guest_zfs(){
|
info::guest_zfs(){
|
||||||
|
|||||||
@@ -693,7 +693,7 @@ vm::bhyve_device_console(){
|
|||||||
[ -z "${_console}" ] && return 0
|
[ -z "${_console}" ] && return 0
|
||||||
|
|
||||||
# add ports
|
# add ports
|
||||||
while [ -n "${_console}" ]; do
|
while [ -n "${_console}" -a ${_curr} -lt 16 ]; do
|
||||||
# if set to "yes/on/1", just use the console number as port name
|
# if set to "yes/on/1", just use the console number as port name
|
||||||
case "${_console}" in
|
case "${_console}" in
|
||||||
[Yy][Ee][Ss]|[Oo][Nn]|1) _console="${_curr}" ;;
|
[Yy][Ee][Ss]|[Oo][Nn]|1) _console="${_curr}" ;;
|
||||||
@@ -701,9 +701,6 @@ vm::bhyve_device_console(){
|
|||||||
|
|
||||||
_dev_str="${_dev_str},${_console}=${VM_DS_PATH}/${_name}/vtcon.${_console}"
|
_dev_str="${_dev_str},${_console}=${VM_DS_PATH}/${_name}/vtcon.${_console}"
|
||||||
|
|
||||||
# stop at 16
|
|
||||||
[ ${_curr} -ge 16 ] && break;
|
|
||||||
|
|
||||||
_curr=$((_curr + 1))
|
_curr=$((_curr + 1))
|
||||||
config::get "_console" "virt_console${_curr}"
|
config::get "_console" "virt_console${_curr}"
|
||||||
done
|
done
|
||||||
|
|||||||
@@ -18,8 +18,16 @@
|
|||||||
#
|
#
|
||||||
loader=""
|
loader=""
|
||||||
|
|
||||||
|
# bhyveload_loader
|
||||||
|
# If using bhyveload, this option can be used to specify the path
|
||||||
|
# to the loader inside the guest to use
|
||||||
|
#
|
||||||
|
# the default is /boot/userboot.so
|
||||||
|
#
|
||||||
|
bhyveload_loader=""
|
||||||
|
|
||||||
# loader_timeout
|
# loader_timeout
|
||||||
# By default grub-bhyve will wait 3 seconds before booting the default
|
# By default bhyveload & grub-bhyve will wait 3 seconds before booting the default
|
||||||
# option. This setting allows you to either reduce the timeout to
|
# option. This setting allows you to either reduce the timeout to
|
||||||
# make boot faster, or increase it so that it's easier to access
|
# make boot faster, or increase it so that it's easier to access
|
||||||
# the grub console before it starts booting
|
# the grub console before it starts booting
|
||||||
|
|||||||
2
vm
2
vm
@@ -25,7 +25,7 @@
|
|||||||
# POSSIBILITY OF SUCH DAMAGE.
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
VERSION=1.2
|
VERSION=1.2
|
||||||
VERSION_INT=102050
|
VERSION_INT=102051
|
||||||
VERSION_BSD=$(uname -K)
|
VERSION_BSD=$(uname -K)
|
||||||
PATH=${PATH}:/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin
|
PATH=${PATH}:/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin
|
||||||
|
|
||||||
|
|||||||
7
vm.8
7
vm.8
@@ -1027,6 +1027,13 @@ can be supported by using the
|
|||||||
guest type, and specifying the
|
guest type, and specifying the
|
||||||
.Sy grub
|
.Sy grub
|
||||||
loader.
|
loader.
|
||||||
|
.It bhyveload_loader
|
||||||
|
This option allows a custom path to be used for the loader inside the guest.
|
||||||
|
Passed to
|
||||||
|
.Sy bhyveload
|
||||||
|
using the
|
||||||
|
.Sy -l
|
||||||
|
argument.
|
||||||
.It loader_timeout
|
.It loader_timeout
|
||||||
By default the
|
By default the
|
||||||
.Sy bhyveload
|
.Sy bhyveload
|
||||||
|
|||||||
Reference in New Issue
Block a user