mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-09 23:10:08 +00:00
17722c169c
We still default to bhyveloader(1) if no explicit bootloader configuration is supplied in the domain. If the /domain/bootloader looks like grub-bhyve and the user doesn't supply /domain/bootloader_args, we make an intelligent guess and try chainloading the first partition on the disk (or a CD if one exists, under the assumption that for a VM a CD is likely an install source). Caveat: Assumes the HDD boots from the msdos1 partition. I think this is a pretty reasonable assumption for a VM. (DrvBhyve with Bhyveload already assumes that the first disk should be booted.) I've tested both HDD and CD boot and they seem to work.
46 lines
1.5 KiB
C
46 lines
1.5 KiB
C
/*
|
|
* bhyve_command.h: bhyve command generation
|
|
*
|
|
* Copyright (C) 2014 Roman Bogorodskiy
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#ifndef __BHYVE_COMMAND_H__
|
|
# define __BHYVE_COMMAND_H__
|
|
|
|
# include "bhyve_domain.h"
|
|
# include "bhyve_utils.h"
|
|
|
|
# include "domain_conf.h"
|
|
# include "vircommand.h"
|
|
|
|
# define BHYVE_CONFIG_FORMAT_ARGV "bhyve-argv"
|
|
|
|
virCommandPtr virBhyveProcessBuildBhyveCmd(virConnectPtr conn,
|
|
virDomainDefPtr def,
|
|
bool dryRun);
|
|
|
|
virCommandPtr
|
|
virBhyveProcessBuildDestroyCmd(bhyveConnPtr driver,
|
|
virDomainDefPtr def);
|
|
|
|
virCommandPtr
|
|
virBhyveProcessBuildLoadCmd(virConnectPtr conn, virDomainDefPtr def,
|
|
const char *devmap_file, char **devicesmap_out);
|
|
|
|
#endif /* __BHYVE_COMMAND_H__ */
|