diff --git a/scripts/vagrant/Vagrantfile b/scripts/vagrant/Vagrantfile index ffe04419d..d4c66c9d1 100644 --- a/scripts/vagrant/Vagrantfile +++ b/scripts/vagrant/Vagrantfile @@ -20,6 +20,7 @@ def get_box_type(distro, force_distro) 'fedora36' => 'generic/fedora36', 'arch' => 'generic/arch', 'freebsd12' => 'generic/freebsd12', + 'freebsd13' => 'generic/freebsd13', 'rocky8' => 'rockylinux/8' } abort("Invalid argument! #{distro}") unless distro_to_type.key?(distro) || force_distro diff --git a/scripts/vagrant/create_vbox.sh b/scripts/vagrant/create_vbox.sh index 677fd2cd8..62a6cfd7d 100755 --- a/scripts/vagrant/create_vbox.sh +++ b/scripts/vagrant/create_vbox.sh @@ -20,7 +20,7 @@ display_help() { echo " Usage: ${0##*/} [-b nvme-backing-file] [-n ] [-s ] [-x ] [-hvrldcufaoH] " echo echo " distro = " + echo " fedora34 | fedora35 | fedora36 | freebsd11 | freebsd12 | freebsd13 | arch | clearlinux | rocky8>" echo echo " -s in MB Default: ${SPDK_VAGRANT_VMRAM}" echo " -n 1 to 4 Default: ${SPDK_VAGRANT_VMCPU}" @@ -176,7 +176,7 @@ case "${SPDK_VAGRANT_DISTRO}" in centos[78]) ;& ubuntu1[68]04 | ubuntu2[02]04) ;& fedora3[3-6]) ;& - freebsd1[12]) ;& + freebsd1[1-3]) ;& rocky8) ;& arch | clearlinux) ;; *)