mtdutils and libubiio
Corentin Chary
corentin.chary at gmail.com
Thu May 7 04:41:38 EDT 2009
On Thu, May 7, 2009 at 7:57 AM, Artem Bityutskiy <dedekind at infradead.org> wrote:
> On Wed, 2009-05-06 at 14:22 +0200, Corentin Chary wrote:
>> Hi,
>> You'll find here some experiments:
>> http://git.iksaif.net/?p=users/iksaif/mtd-utils.git;a=summary
>>
>> Before working on mkfs.ubifs I wanted to cleanup the mtd-utils dir, so
>> I tried some change,
>> including the use of CMake. As a lot of people here don't want to hear
>> about CMake, if the patchs
>> for mkfs are good enought, I'll rebase them on a vanilla version of mtd-utils.
>
> I have a pile of patches in my tree as well. I wait for dwmw2 to send
> my "export subpage via sysfs" patch to Linus, and after this I'll
> push my changes. They basically make libmtd use sysfs interface, but
> there are some random minor libubi changes and fixes. I'll try to
> push this ASAP.
Ok, so it'll probably add change to libubiio because like libubi we
use some sysfs files.
> Vs CMake. I do not know. I'm not very good in this at all. Mike kind
> of maintains the build system in the mtd-utils, and he lately improved
> it. So if you may convince him, probably. But the thing is that not
> many people care about mtd-utils, and if you introduce CMake and then
> disappear - who is going to maintain that ?
>
> I personally think that if Makefile can do the same stuff, there is
> no reason to change/add new build system only because it is fewer lines
> in CMake.
Well CMake is easy to maintain when the base CMakefile is done. Adding programs
is done with add_executable(prog prog1.c prog2.c) for example. And things like
cross-compiling, installation, debug, external buid, are builtin.
Also, it have some dependencies checking functionality
(find_package(ZLIB REQUIRED) to make sure zlib is present before
compiling).
Using CMake I was able to move all shared code into lib/ (no more
crc32.c in each dirs). It can be done
with Makefiles, but it's more tricky.
wc `find . -name CMakeLists.txt`
14 29 416 ./jffs/CMakeLists.txt
7 21 213 ./mkfs.ubifs/CMakeLists.txt
26 71 856 ./lib/CMakeLists.txt
79 258 2511 ./CMakeLists.txt
35 68 990 ./ubi-utils/CMakeLists.txt
38 90 1474 ./mtd-utils/CMakeLists.txt
199 537 6460 total
wc Makefile common.mk ubi-utils/Makefile mkfs.ubifs/Makefile
66 148 1728 Makefile
71 200 1772 common.mk
59 172 1514 ubi-utils/Makefile
23 48 502 mkfs.ubifs/Makefile
219 568 5516 total
It's why I think maintaining a build system based on CMake is easier.
So if Mike is ok, I'll be happy to
help. If he is not, let's work with raw Makefiles.
But it's clear that moving to CMake is *certainly not a priority*
here, sot let's talk about usefull things: mkfs =).
>> What you'll find here:
>> - CMake "experiment" with dependencies check on zlib and libacl
>> - libubiio, provinding the same API the kernel does
>> - mkfs.ubifs using libubiio, can write the image directly on an ubi volume
>
> Would you please send patches. It is so much more convenient to
> people? Teaching mkfs.ubifs write directly into the volume sounds
> nice, BTW.
>
Well as I said it's just an experiment right now.
Now that it works, I'll be able to send a series of patch with small
and smooth changes.
I'm not sure of the dtype I chose, but you'll be able to check that
later with a clean patch.
Breaking the whole buildsystem is certainly not the right way for
merging such a thing... it's just that the current one is not really
easy to work with.
--
Corentin Chary
http://xf.iksaif.net - http://uffs.org
More information about the linux-mtd
mailing list