mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-08-25 07:26:38 +00:00
cdce942c1a
If one typically only boots full disk-images, one wouldn't necessaraly want to statically link glibc, for the guest-init feature of the kvmtool. As statically linked glibc triggers haevy security maintainance. Signed-off-by: Dimitri John Ledkov <dimitri.j.ledkov@intel.com> [will: moved all the guest_init handling into builtin_setup.c] Signed-off-by: Will Deacon <will.deacon@arm.com>
13 lines
331 B
C
13 lines
331 B
C
#ifndef KVM__SETUP_H
|
|
#define KVM__SETUP_H
|
|
|
|
#include <kvm/util.h>
|
|
|
|
int kvm_cmd_setup(int argc, const char **argv, const char *prefix);
|
|
void kvm_setup_help(void) NORETURN;
|
|
int kvm_setup_create_new(const char *guestfs_name);
|
|
void kvm_setup_resolv(const char *guestfs_name);
|
|
int kvm_setup_guest_init(const char *guestfs_name);
|
|
|
|
#endif
|