hwdb: fix screen rotation for EXO Wings 2in1 w1125 (#36283)
[systemd.io.git] / test / TEST-64-UDEV-STORAGE / simultaneous_events.configure
blob668f3e2aa06a6e18046d2a9c77fb61ba9512455b
1 #!/usr/bin/python3
2 # SPDX-License-Identifier: LGPL-2.1-or-later
4 import json
5 import sys
8 config = json.load(sys.stdin)
10 for i in range(10):
11     id = f"drivesimultaneousevents{i}"
12     config["Drives"] += [
13         {
14             "Id": id,
15             "Size": "128M",
16             "Options": "cache=unsafe",
17         }
18     ]
19     config["QemuArgs"] += ["-device", f"scsi-hd,drive={id},serial=deadbeeftest{i}"]
21 json.dump(config, sys.stdout)