Re: [OE-core] [PATCH] fetch2: Set maxsplit to match expected variables

2023-07-11 Thread Dit Kozmaj
uot; character. On Tue, Jul 11, 2023 at 4:33 PM wrote: > From: Dit Kozmaj > > Set the maxsplit value to match the expected number of variables. > This also avoids an unnecessary split as the parameters are in the form > 'key=value' > and the 'value' could contain

[OE-core] [PATCH] fetch2: Set maxsplit to match expected variables

2023-07-11 Thread Dit Kozmaj
From: Dit Kozmaj Set the maxsplit value to match the expected number of variables. This also avoids an unnecessary split as the parameters are in the form 'key=value' and the 'value' could contain the '=' character. Signed-off-by: Dit Kozmaj --- bitbake/lib/b

[OE-core] [PATCH 3/3] kickstart: Expand label and part-name doc

2023-04-06 Thread Dit Kozmaj
From: Dit Kozmaj Update --label and --part-name documentation to reflect the behaviour with GPT partition format. Signed-off-by: Dit Kozmaj --- documentation/ref-manual/kickstart.rst | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/documentation/ref-manual

[OE-core] [PATCH 2/3] selftest: wic: Add test for --part-name argument

2023-04-06 Thread Dit Kozmaj
From: Dit Kozmaj Add test for wic --part-name argument in .wks file. Test three different cases: - Set only the --part-name argument. - Set only the --label argument. In this case the GPT partition label is set to the value of --label for compatibility reasons. - Set both. In this case the

[OE-core] [PATCH 1/3] wic: use part_name when defined

2023-04-06 Thread Dit Kozmaj
From: Dit Kozmaj So far part.label has been used to define GPT partition label even if part.part_name was defined. Fix the code to use part.part_name whenever available, as it makes sense to have a GPT partition label which is different from the contained filesystem label. Signed-off-by: Dit

Re: [OE-core] [RFC][PATCH] wic: use part_name when defined

2023-03-22 Thread Dit Kozmaj
proposal is ok, we will patch the documentation to document that the GPT partition label is set even when only --label is defined. Regards On Wed, Mar 22, 2023 at 4:54 PM wrote: > From: Dit Kozmaj > > So far part.label has been used to define GPT partition label even if > part.p

[OE-core] [RFC][PATCH] wic: use part_name when defined

2023-03-22 Thread dit . kozmaj
From: Dit Kozmaj So far part.label has been used to define GPT partition label even if part.part_name was defined. Fix the code to use part.part_name whenever available, as it makes sense to have a GPT partition label which is different from the contained filesystem label. Signed-off-by: Dit