1
0

Add support for applying patches

This commit is contained in:
2023-02-16 10:21:44 +00:00
parent cc1261b0b0
commit 2d6db97b43
3 changed files with 69 additions and 0 deletions

View File

@ -115,6 +115,12 @@ type FileTransfer struct {
Remote string
}
type Patch struct {
Path string
Source string
Script string
}
// Artifact is for .out-of-tree.toml
type Artifact struct {
Name string
@ -140,6 +146,8 @@ type Artifact struct {
DisableKpti bool
}
Patches []Patch
Make struct {
Target string
}