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 <[email protected]> --- 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
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#195816): https://lists.openembedded.org/g/openembedded-core/message/195816 Mute This Topic: https://lists.openembedded.org/mt/104418249/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
