mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-10 06:26:57 +02:00
BUG=chromium-os:34126 TEST=image_to_vm with new size and ran desktopui_NaClSanity Change-Id: I5553de776cb5dec3d2b0dde362ff3560926a6472 Reviewed-on: https://gerrit.chromium.org/gerrit/32424 Reviewed-by: Rahul Chaturvedi <rkc@chromium.org> Tested-by: Chris Sosa <sosa@chromium.org>
17 lines
507 B
Bash
17 lines
507 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="chromiumos.vmx"
|
|
DEFAULT_VBOX_DISK="os.vdi"
|
|
DEFAULT_QEMU_IMAGE="chromiumos_qemu_image.bin"
|
|
|
|
# Minimum sizes for full size vm images -- needed for update.
|
|
MIN_VDISK_SIZE_FULL=6072
|
|
MIN_STATEFUL_FS_SIZE_FULL=6144
|