The tarball here is of the MTD-Utils GIT repository from git://git.infradead.org/mtd-utils.git

In general, the repository is left in a state where the current checkout is a branch opened
against a release tag.

To update the repository, do this:

	tar -xf mtd-utils.tar.gz
	cd mtd-utils
	git checkout master
	git pull

After this has run its course, a list of available relase tags can be obtained as follows:

	git tag

Unless we need something from the master branch which has not been released yet, we should
select and branch off the highest available release tag (it's v1.5.1 at the time of writing):

	git checkout v1.5.1 -b R_1.5.1

Now, create the new tarball for the repository:

	cd ..
	tar -cjf mtd-utils.tar.bz2 mtd-utils


The build targets within mtd-utils_recipe.mk might need to be updated.


Iwo
