On 11/04/2024 5:00 pm, Luca Fancellu wrote:
>> On 11 Apr 2024, at 16:25, Daniel P. Smith <[email protected]>
>> wrote:
>>
>> This patch moves the gunzip code files to common/gzip. Makefiles are adjusted
>> accordingly.
>>
>> Signed-off-by: Daniel P. Smith <[email protected]>
>> ---
>> xen/common/Makefile | 2 +-
>> xen/common/gzip/Makefile | 1 +
>> xen/common/{ => gzip}/gunzip.c | 0
>> xen/common/{ => gzip}/inflate.c | 0
>> 4 files changed, 2 insertions(+), 1 deletion(-)
>> create mode 100644 xen/common/gzip/Makefile
>> rename xen/common/{ => gzip}/gunzip.c (100%)
>> rename xen/common/{ => gzip}/inflate.c (100%)
> For inflate.c you will need to update also docs/misra/exclude-list.json
Something like this?
diff --git a/docs/misra/exclude-list.json b/docs/misra/exclude-list.json
index 36bad9e54f7d..095636415897 100644
--- a/docs/misra/exclude-list.json
+++ b/docs/misra/exclude-list.json
@@ -118,7 +118,7 @@
"comment": "Imported from Linux, ignore for now"
},
{
- "rel_path": "common/inflate.c",
+ "rel_path": "common/gzip/inflate.c",
"comment": "Imported from Linux, ignore for now"
},
{
I can fold on commit.
~Andrew