mirror of
https://github.com/systemd/systemd.git
synced 2024-12-25 01:34:28 +03:00
37 lines
907 B
Plaintext
37 lines
907 B
Plaintext
|
#!/usr/bin/python3
|
||
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||
|
|
||
|
import json
|
||
|
import os
|
||
|
import subprocess
|
||
|
import sys
|
||
|
|
||
|
|
||
|
config = json.load(sys.stdin)
|
||
|
|
||
|
qemu = f"qemu-system-{os.environ["QEMU_ARCHITECTURE"]}"
|
||
|
result = subprocess.run([qemu, '-device', 'help'], check=True, text=True, stdout=subprocess.PIPE)
|
||
|
if 'name "megasas-gen2"' not in result.stdout:
|
||
|
print("megasas-gen2 device driver is not available, skipping test...", file=sys.stderr)
|
||
|
exit(77)
|
||
|
|
||
|
for i in range(4):
|
||
|
config["QemuArgs"] += ['-device', f"megasas-gen2,id=scsi{i}"]
|
||
|
|
||
|
for i in range(128):
|
||
|
id = f"drive{i}"
|
||
|
config["QemuDrives"] += [
|
||
|
{
|
||
|
"Id": id,
|
||
|
"Size": "1M",
|
||
|
"Options": "cache=unsafe",
|
||
|
}
|
||
|
]
|
||
|
config["QemuArgs"] += [
|
||
|
'-device',
|
||
|
f"scsi-hd,drive={id},bus=scsi{i // 32}.0,channel=0,"
|
||
|
f"scsi-id={i % 32},lun=0",
|
||
|
]
|
||
|
|
||
|
json.dump(config, sys.stdout)
|