org.osbuild.write-device
Write a file to a device
This allows writing a file to a raw device. This is useful for example to write bootloader or firmware files to custom partitions.
Schema 1
{}
Schema 2
{
"devices": {
"type": "object",
"additionalProperties": true,
"required": [
"device"
],
"properties": {
"device": {
"type": "object",
"additionalProperties": true
}
}
},
"inputs": {
"type": "object",
"additionalProperties": true
},
"options": {
"additionalProperties": false,
"required": [
"from"
],
"properties": {
"from": {
"type": "string",
"description": "The source",
"pattern": "^input:\\/\\/[^\\/]+\\/"
}
}
}
}