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 5, 2023
1 parent 36449f8 commit 82d8e97
Showing 1 changed file with 80 additions and 36 deletions.
116 changes: 80 additions & 36 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -304,25 +304,47 @@
"type": "object",
"default": {},
"properties": {
"symbolFileName": {
"type": "string",
"description": "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",
"default": ""
},
"imageFileName": {
"type": "string",
"description": "If specified, an image file to load at the given (optional) offset",
"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": []
},
"imageOffset": {
"type": "string",
"description": "If imageFileName is specified, the offset used to load",
"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 @@ -545,25 +567,47 @@
"type": "object",
"default": {},
"properties": {
"symbolFileName": {
"type": "string",
"description": "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",
"default": ""
},
"imageFileName": {
"type": "string",
"description": "If specified, an image file to load at the given (optional) offset",
"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": []
},
"imageOffset": {
"type": "string",
"description": "If imageFileName is specified, the offset used to load",
"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 82d8e97

Please sign in to comment.