Re: [OE-core] [PATCH 1/2] rust-android-sparse: add lightweight simg2img/img2simg implementation

2023-02-13 Thread Alexander Kanavin
On Tue, 14 Feb 2023 at 04:42, Dmitry Baryshkov wrote: > My goal was to move sparse image handling in a way to be able to > generate them from the BSP layers, removing dependency on the meta-oe > layer. This way it is possible to generate sparse images > unconditionally and then let the user feed

Re: [OE-core] [PATCH 1/2] rust-android-sparse: add lightweight simg2img/img2simg implementation

2023-02-13 Thread Dmitry Baryshkov
On Sat, 11 Feb 2023 at 19:10, Alexander Kanavin wrote: > > But is it necessary or desirable to have it in core? This does seem > like something that belongs in meta-oe rather. My goal was to move sparse image handling in a way to be able to generate them from the BSP layers, removing dependency

Re: [OE-core] [PATCH 1/2] rust-android-sparse: add lightweight simg2img/img2simg implementation

2023-02-11 Thread Alexander Kanavin
But is it necessary or desirable to have it in core? This does seem like something that belongs in meta-oe rather. Alex On Sat, 11 Feb 2023 at 16:38, Dmitry Baryshkov wrote: > > The Android's simg2img/img2simg comes from android-tools, which is a > huge package with lots of dependencies on its

[OE-core] [PATCH 1/2] rust-android-sparse: add lightweight simg2img/img2simg implementation

2023-02-11 Thread Dmitry Baryshkov
The Android's simg2img/img2simg comes from android-tools, which is a huge package with lots of dependencies on its own. It resides inside meta-oe rather than OE-Core. Add lightweight tool to handle sparse images, which is small enough to be pushed into OE-Core. Signed-off-by: Dmitry Baryshkov