mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-08 05:26:58 +02:00
We only really need raw images for dd'ing to block devices and this format has been requested for some cases so lets just use it!
17 lines
509 B
Bash
17 lines
509 B
Bash
# Copyright (c) 2010 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.
|
|
|
|
# Common constants for vm scripts.
|
|
|
|
# Default values for creating VM's.
|
|
DEFAULT_MEM="1024"
|
|
DEFAULT_VMDK="ide.vmdk"
|
|
DEFAULT_VMX="coreos.vmx"
|
|
DEFAULT_VBOX_DISK="os.vdi"
|
|
DEFAULT_QEMU_IMAGE="coreos_developer_qemu_image.img"
|
|
|
|
# Minimum sizes for full size vm images -- needed for update.
|
|
MIN_VDISK_SIZE_FULL=9216
|
|
MIN_STATEFUL_FS_SIZE_FULL=6144
|