Lines Matching +full:build +full:- +full:without +full:- +full:defaults
12 # the COPYING file in the top-level directory.
21 'cpu' : "cortex-a57",
22 'machine' : "virt,gic-version=3",
23 'install_cmds' : "apt-get update,"\
24 "apt-get build-dep -y --arch-only qemu,"\
25 "apt-get install -y libfdt-dev pkg-config language-pack-en ninja-build",
39 image_name = "focal-server-cloudimg-arm64.img"
40 image_link = "https://cloud-images.ubuntu.com/focal/20220615/" + image_name
43 set -e;
44 cd $(mktemp -d);
46 tar --checkpoint=.10 -xf /dev/vdb;
48 make --output-sync {target} -j{jobs} {verbose};
58 # because without them, we boot so slowly that we
60 if '-smp' not in extra_args and \
61 '-smp' not in self._config['extra_args'] and \
62 '-smp' not in self._args:
64 extra_args.extend(["-smp", "8"])
71 defaults = aarch64vm.get_config_defaults(UbuntuAarch64VM, DEFAULT_CONFIG) variable
72 sys.exit(basevm.main(UbuntuAarch64VM, defaults))