Searched full:yaml (Results 1 – 25 of 26) sorted by relevance
12
/qemu/ |
H A D | .patchew.yml | 8 # to YAML using the following Python script: 12 # import ruamel.yaml 15 # yaml = ruamel.yaml.YAML() 16 # yaml.explicit_start = True 17 # data = json.loads(json_str, object_pairs_hook=ruamel.yaml.comments.CommentedMap) 18 # ruamel.yaml.scalarstring.walk_tree(data) 19 # yaml.dump(data, sys.stdout)
|
/qemu/tests/vm/ |
H A D | basevm.py | 538 """ Parse yaml config and populate our config structure. 539 The yaml config allows the user to override the 550 # We gracefully handle importing the yaml module 553 # so if the yaml module is not installed we will exit with error. 555 import yaml 557 print("The python3-yaml package is needed "\ 558 "to support config.yaml files") 563 yaml_dict = yaml.safe_load(f) 625 help="Provide config yaml for configuration. "\ 626 "See config_example.yaml for example.")
|
H A D | Makefile.include | 37 HAVE_PYTHON_YAML = $(shell $(PYTHON) -c "import yaml" 2> /dev/null && echo yes) 78 @echo " (install python3-yaml to enable support for yaml file to configure a VM.)"
|
H A D | conf_example_aarch64.yml | 2 # Example yaml for use by any of the scripts in tests/vm.
|
H A D | conf_example_x86.yml | 2 # Example yaml for use by any of the x86 based scripts in tests/vm.
|
/qemu/scripts/ci/ |
H A D | gitlab-ci-section | 8 # https://docs.gitlab.com/ee/ci/yaml/script.html#expand-and-collapse-job-log-sections
|
/qemu/scripts/ci/setup/ubuntu/ |
H A D | build-environment.yml | 38 file: "ubuntu-2204-{{ ansible_facts['architecture'] }}.yaml"
|
H A D | ubuntu-2204-aarch64.yaml | 115 - python3-yaml
|
H A D | ubuntu-2204-s390x.yaml | 113 - python3-yaml
|
H A D | ubuntu-2204-armhf-cross.yml | 48 - python3-yaml
|
/qemu/tests/docker/dockerfiles/ |
H A D | alpine.docker | 91 py3-yaml \
|
H A D | ubuntu2204.docker | 122 python3-yaml \
|
H A D | debian.docker | 123 python3-yaml \
|
H A D | debian-amd64-cross.docker | 51 python3-yaml \
|
H A D | debian-s390x-cross.docker | 51 python3-yaml \
|
H A D | debian-mipsel-cross.docker | 51 python3-yaml \
|
H A D | debian-arm64-cross.docker | 51 python3-yaml \
|
H A D | debian-i686-cross.docker | 51 python3-yaml \
|
H A D | debian-ppc64el-cross.docker | 51 python3-yaml \
|
H A D | debian-mips64el-cross.docker | 51 python3-yaml \
|
H A D | debian-armhf-cross.docker | 51 python3-yaml \
|
/qemu/tests/lcitool/ |
H A D | refresh | 94 filename = Path(src_dir, "scripts", "ci", "setup", os, f"{target}-{arch}.yaml") 95 cmd = lcitool_cmd + ["variables", "--format", "yaml", "-a",
|
/qemu/docs/devel/ |
H A D | codebase.rst | 103 `CI <ci>` yaml and scripts.
|
/qemu/hw/arm/ |
H A D | sbsa-ref.c | 243 * From Documentation/devicetree/bindings/arm/cpus.yaml in create_fdt()
|
H A D | virt.c | 428 * See Linux Documentation/devicetree/bindings/arm/cpus.yaml in fdt_add_cpu_nodes()
|
12