diff options
author | 2017-08-08 10:32:16 +0300 | |
---|---|---|
committer | 2017-08-08 07:43:45 +0000 | |
commit | 0428c2d9e46f4ddd4a0458dbf8a48065eacabe66 (patch) | |
tree | 93f8c99af840e060a7c1f329f37923404760ce52 /examples | |
parent | 27b8b1c246d63c14f112a99362873fe887c13c10 (diff) |
Configure requirements for AAVMF(UEFI) with Cirros image on AArch64
Cirros image on AArch64 with AAVMF(UEFI) requires at least 256MB RAM.
The default 128MB was changed to 256MB.
Change-Id: I7414de519dcb53337f83690d1470ea672cec739b
Signed-off-by: Delia Popescu <delia.popescu@enea.com>
JIRA: ARMBAND-279
Diffstat (limited to 'examples')
-rw-r--r-- | examples/demo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/demo.py b/examples/demo.py index b2231f8..108bdc0 100644 --- a/examples/demo.py +++ b/examples/demo.py @@ -35,7 +35,7 @@ network.create() # Flavors from snaps.openstack.create_flavor import FlavorSettings, OpenStackFlavor -flavor_settings = FlavorSettings(name='test-flavor', ram=128, disk=10, vcpus=2) +flavor_settings = FlavorSettings(name='test-flavor', ram=256, disk=10, vcpus=2) flavor = OpenStackFlavor(os_creds, flavor_settings) flavor.create() |