OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 # Common constants for vm scripts. | |
6 | |
7 # Default values for creating VM's. | |
8 DEFAULT_MEM="1024" | |
9 DEFAULT_VMDK="ide.vmdk" | |
10 DEFAULT_VMX="chromiumos.vmx" | |
11 DEFAULT_VBOX_DISK="os.vdi" | |
12 DEFAULT_QEMU_IMAGE="chromiumos_qemu_image.bin" | |
13 | |
14 # Minimum sizes for full size vm images -- needed for update. | |
15 MIN_VDISK_SIZE_FULL=6072 | |
16 MIN_STATEFUL_FS_SIZE_FULL=2048 | |
petkov
2010/09/29 20:54:07
consider including VM somewhere in all of these co
| |
OLD | NEW |