Skip to content

Commit

Permalink
Enhancing ImageAndSymbols to load several binaries
Browse files Browse the repository at this point in the history
Signed-off-by: Florent Vion <florent.vion@st.com>
  • Loading branch information
FlorentVSTM committed Dec 11, 2023
1 parent 36449f8 commit b3f2b09
Showing 1 changed file with 92 additions and 8 deletions.
100 changes: 92 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -306,23 +306,65 @@
"properties": {
"symbolFileName": {
"type": "string",
"description": "If specified, a symbol file to load at the given (optional) offset",
"description": "Deprecated, use symbolFilesAndOffset instead. If specified, a symbol file to load at the given (optional) offset",
"default": ""
},
"symbolOffset": {
"type": "string",
"description": "If symbolFileName is specified, the offset used to load",
"description": "Deprecated, use symbolFilesAndOffset instead. If symbolFileName is specified, the offset used to load",
"default": ""
},
"imageFileName": {
"type": "string",
"description": "If specified, an image file to load at the given (optional) offset",
"description": "Deprecated, use imageFilesAndOffset instead. If specified, an image file to load at the given (optional) offset",
"default": ""
},
"imageOffset": {
"type": "string",
"description": "If imageFileName is specified, the offset used to load",
"description": "Deprecated, use imageFilesAndOffset instead. If imageFileName is specified, the offset used to load",
"default": ""
},
"symbolFilesAndOffset": {
"type": "array",
"description": "If specified, list of symbol files to load at the given (optional) offset",
"items": {
"type": "object",
"properties": {
"file": {
"type": "string",
"description": "If specified, a symbol file to load at the given (optional) offset",
"default": ""
},
"offset": {
"type": "string",
"description": "If symbol file is specified, the offset used to load (optional)",
"default": ""
}
},
"default": {}
},
"default": []
},
"imageFilesAndOffset": {
"type": "array",
"description": "If specified, list of image files to load at the given (optional) offset",
"items": {
"type": "object",
"properties": {
"file": {
"type": "string",
"description": "If specified, an image file to load at the given (optional) offset",
"default": ""
},
"offset": {
"type": "string",
"description": "If image file is specified, the offset used to load (optional)",
"default": ""
}
},
"default": {}
},
"default": []
}
}
},
Expand Down Expand Up @@ -547,23 +589,65 @@
"properties": {
"symbolFileName": {
"type": "string",
"description": "If specified, a symbol file to load at the given (optional) offset",
"description": "Deprecated, use symbolFilesAndOffset instead. If specified, a symbol file to load at the given (optional) offset",
"default": ""
},
"symbolOffset": {
"type": "string",
"description": "If symbolFileName is specified, the offset used to load",
"description": "Deprecated, use symbolFilesAndOffset instead. If symbolFileName is specified, the offset used to load",
"default": ""
},
"imageFileName": {
"type": "string",
"description": "If specified, an image file to load at the given (optional) offset",
"description": "Deprecated, use imageFilesAndOffset instead. If specified, an image file to load at the given (optional) offset",
"default": ""
},
"imageOffset": {
"type": "string",
"description": "If imageFileName is specified, the offset used to load",
"description": "Deprecated, use imageFilesAndOffset instead. If imageFileName is specified, the offset used to load",
"default": ""
},
"symbolFilesAndOffset": {
"type": "array",
"description": "If specified, list of symbol files to load at the given (optional) offset",
"items": {
"type": "object",
"properties": {
"file": {
"type": "string",
"description": "If specified, a symbol file to load at the given (optional) offset",
"default": ""
},
"offset": {
"type": "string",
"description": "If symbol file is specified, the offset used to load (optional)",
"default": ""
}
},
"default": {}
},
"default": []
},
"imageFilesAndOffset": {
"type": "array",
"description": "If specified, list of image files to load at the given (optional) offset",
"items": {
"type": "object",
"properties": {
"file": {
"type": "string",
"description": "If specified, an image file to load at the given (optional) offset",
"default": ""
},
"offset": {
"type": "string",
"description": "If image file is specified, the offset used to load (optional)",
"default": ""
}
},
"default": {}
},
"default": []
}
}
},
Expand Down

0 comments on commit b3f2b09

Please sign in to comment.