blob: 3142c80a9b6376e2ba8bea8283c97e22b202809e [file] [log] [blame]
// Copyright 2017 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef VM_TOOLS_LAUNCHER_CONSTANTS_H_
#define VM_TOOLS_LAUNCHER_CONSTANTS_H_
namespace vm_tools {
namespace launcher {
// Path to crosvm binary.
constexpr char kCrosvmBin[] = "/usr/bin/crosvm";
// Default path to VM kernel image and rootfs.
constexpr char kVmDefaultPath[] = "/run/imageloader/cros-termina";
// Name of the VM kernel image.
constexpr char kVmKernelName[] = "vm_kernel";
// Name of the VM rootfs image.
constexpr char kVmRootfsName[] = "vm_rootfs.img";
// Runtime directory where information about running VMs will be stored.
constexpr char kVmRuntimeDirectory[] = "/run/vm";
} // namespace launcher
} // namespace vm_tools
#endif // VM_TOOLS_LAUNCHER_CONSTANTS_H_