15 lines
486 B
Text
15 lines
486 B
Text
import "@typespec/json-schema";
|
|
using TypeSpec.JsonSchema;
|
|
|
|
@jsonSchema("/modules/initramfs-latest.json")
|
|
model InitramfsModuleLatest {
|
|
...InitramfsModuleV1;
|
|
}
|
|
|
|
@jsonSchema("/modules/initramfs-v1.json")
|
|
model InitramfsModuleV1 {
|
|
/** The initramfs module is used to regenerate initramfs, needed to apply some modifications early in the Linux startup process.
|
|
* https://blue-build.org/reference/modules/initramfs/
|
|
*/
|
|
type: "initramfs" | "initramfs@v1" | "initramfs@latest";
|
|
}
|