mirror of
https://github.com/systemd/systemd.git
synced 2024-12-22 17:35:35 +03:00
ac09c21d45
The virtio-scsi driver is available in the KVM/cloud kernel packages provided by distributions whereas the megasas2 driver is not. Let's switch to virtio-scsi so we can switch back to the KVM/cloud kernel packages.
29 lines
575 B
Python
Executable File
29 lines
575 B
Python
Executable File
#!/usr/bin/python3
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
import json
|
|
import sys
|
|
|
|
|
|
config = json.load(sys.stdin)
|
|
|
|
for i in range(4):
|
|
config["QemuArgs"] += ['-device', f"virtio-scsi-pci,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)
|