diff mbox series

wic: allow sizes to be specified in sectors

Message ID 20240217205103.27285-1-twoerner@gmail.com
State New
Headers show
Series wic: allow sizes to be specified in sectors | expand

Commit Message

Trevor Woerner Feb. 17, 2024, 8:51 p.m. UTC
The partition layout of boot devices for some SBCs (e.g. Rockchip[1])
are specified in multiples of sectors (which are multiples of 512 bytes,
instead of 1024). Therefore allow wic to understand partition sizing
specified in sectors as well.

[1] https://opensource.rock-chips.com/wiki_Partitions

Signed-off-by: Trevor Woerner <twoerner@gmail.com>
---
 scripts/lib/wic/ksparser.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Trevor Woerner Feb. 17, 2024, 9:21 p.m. UTC | #1
Sorry, please ignore.

The assumption that everything is a multiple of 1024 runs very deep throughout
wic and is hard-coded in too many places for a patch this simple to work.


On Sat 2024-02-17 @ 03:51:03 PM, Trevor Woerner wrote:
> The partition layout of boot devices for some SBCs (e.g. Rockchip[1])
> are specified in multiples of sectors (which are multiples of 512 bytes,
> instead of 1024). Therefore allow wic to understand partition sizing
> specified in sectors as well.
> 
> [1] https://opensource.rock-chips.com/wiki_Partitions
> 
> Signed-off-by: Trevor Woerner <twoerner@gmail.com>
> ---
>  scripts/lib/wic/ksparser.py | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/scripts/lib/wic/ksparser.py b/scripts/lib/wic/ksparser.py
> index 7ef3dc83ddce..35681bdc8d13 100644
> --- a/scripts/lib/wic/ksparser.py
> +++ b/scripts/lib/wic/ksparser.py
> @@ -178,8 +178,8 @@ class KickStart():
>          # --error, but since nesting mutually exclusive groups does not work,
>          # ----extra-space/--overhead-factor are handled later
>          sizeexcl = part.add_mutually_exclusive_group()
> -        sizeexcl.add_argument('--size', type=sizetype("M"), default=0)
> -        sizeexcl.add_argument('--fixed-size', type=sizetype("M"), default=0)
> +        sizeexcl.add_argument('--size', type=sizetype("M", True), default=0)
> +        sizeexcl.add_argument('--fixed-size', type=sizetype("M", True), default=0)
>  
>          part.add_argument('--source')
>          part.add_argument('--sourceparams')
> -- 
> 2.43.0.76.g1a87c842ece3
>
diff mbox series

Patch

diff --git a/scripts/lib/wic/ksparser.py b/scripts/lib/wic/ksparser.py
index 7ef3dc83ddce..35681bdc8d13 100644
--- a/scripts/lib/wic/ksparser.py
+++ b/scripts/lib/wic/ksparser.py
@@ -178,8 +178,8 @@  class KickStart():
         # --error, but since nesting mutually exclusive groups does not work,
         # ----extra-space/--overhead-factor are handled later
         sizeexcl = part.add_mutually_exclusive_group()
-        sizeexcl.add_argument('--size', type=sizetype("M"), default=0)
-        sizeexcl.add_argument('--fixed-size', type=sizetype("M"), default=0)
+        sizeexcl.add_argument('--size', type=sizetype("M", True), default=0)
+        sizeexcl.add_argument('--fixed-size', type=sizetype("M", True), default=0)
 
         part.add_argument('--source')
         part.add_argument('--sourceparams')