<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mtd-utils.git/ubi-utils/new-utils/src, branch v2.0.0-rc1</title>
<subtitle>A mirror of http://git.infradead.org/mtd-utils.git</subtitle>
<id>https://git.infraroot.at/mtd-utils.git/atom?h=v2.0.0-rc1</id>
<link rel='self' href='https://git.infraroot.at/mtd-utils.git/atom?h=v2.0.0-rc1'/>
<link rel='alternate' type='text/html' href='https://git.infraroot.at/mtd-utils.git/'/>
<updated>2009-03-17T08:16:38+00:00</updated>
<entry>
<title>ubi-utils: re-arrange directory layout</title>
<updated>2009-03-17T08:16:38+00:00</updated>
<author>
<name>Artem Bityutskiy</name>
<email>Artem.Bityutskiy@nokia.com</email>
</author>
<published>2009-03-17T08:14:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.infraroot.at/mtd-utils.git/commit/?id=606f38a2221648ca5c5fa292c9f71d2ddd59fa66'/>
<id>urn:sha1:606f38a2221648ca5c5fa292c9f71d2ddd59fa66</id>
<content type='text'>
Move new-utils to ubi-utils and old ones to ubi-utils/old-utils.

Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
</content>
</entry>
<entry>
<title>UBI: add ubirename utility</title>
<updated>2009-02-18T08:52:57+00:00</updated>
<author>
<name>Richard Titmuss</name>
<email>richard_titmuss@eu.logitech.com</email>
</author>
<published>2009-02-18T08:51:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.infraroot.at/mtd-utils.git/commit/?id=cca27d4c0819ae244b33639a19bec82cc2895704'/>
<id>urn:sha1:cca27d4c0819ae244b33639a19bec82cc2895704</id>
<content type='text'>
Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
</content>
</entry>
<entry>
<title>UBI: update ubi-header.h</title>
<updated>2009-02-18T08:26:20+00:00</updated>
<author>
<name>Artem Bityutskiy</name>
<email>Artem.Bityutskiy@nokia.com</email>
</author>
<published>2009-02-18T08:26:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.infraroot.at/mtd-utils.git/commit/?id=c0e2c526578aff5e531a9afa765c7900ba6e5c34'/>
<id>urn:sha1:c0e2c526578aff5e531a9afa765c7900ba6e5c34</id>
<content type='text'>
Take the latest version from the kernel, where it was renamed
to ubi-media.h.

Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
</content>
</entry>
<entry>
<title>I have here a mtd part which is 3 GiB with a flash page size of 256KiB.</title>
<updated>2009-02-11T12:17:34+00:00</updated>
<author>
<name>linux-mtd-owner@lists.infradead.org</name>
<email>linux-mtd-owner@lists.infradead.org</email>
</author>
<published>2009-02-11T09:04:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.infraroot.at/mtd-utils.git/commit/?id=f372be0ab34ebcf0d2ff61bff143b6bac1e9607e'/>
<id>urn:sha1:f372be0ab34ebcf0d2ff61bff143b6bac1e9607e</id>
<content type='text'>
The 2GiB limit is at erase block 8192. In mtd_is_bad() the computation
for the MEMGETBADBLOCK ioctl() looks like the following:

| seek = eb * mtd-&gt;eb_size;

with both eb and mtd-&gt;eb_size being a signed int results in seek being a
signed result.

The _FILE_OFFSET_BITS=64 define is required to switch off_t from 32bit
to 64bit an 32bit systems. This is required in order to keep using
lseek() as lseek64 on 32bit system. Without this change lseek() in
mtd_read() is called with a 32bit value with most significat bit set and
the kernel performs a sign extension for the 64bit value which is used
in the mtd layer.

The last change also changes the size of the parameter which is passed
to the MEMGETBADBLOCK ioctl() from 32 to 64bit. The counter part in
kernel is also defined as loff_t which is of type __kernel_loff_t and
this is "long long". So this must have been broken for a while unless I
missed something.

Signed-off-by: Sebastian Andrzej Siewior &lt;bigeasy@linutronix.de&gt;
Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
</content>
</entry>
<entry>
<title>ubiupdatevol: fix -t parameter</title>
<updated>2009-01-20T13:30:56+00:00</updated>
<author>
<name>Sebastian Andrzej Siewior</name>
<email>bigeasy@linutronix.de</email>
</author>
<published>2008-12-17T10:15:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.infraroot.at/mtd-utils.git/commit/?id=a5d3a800db996aa81a07c0ae42240971460ac00d'/>
<id>urn:sha1:a5d3a800db996aa81a07c0ae42240971460ac00d</id>
<content type='text'>
The execution of
|./ubiupdatevol /dev/ubi0 -t
will fail because 'argv[optind + 1]' is undefined and the later executed
'strcmp(args.img, "-")' will segfault.
So I can hack around and supply a dummy image or fix it that way.

Signed-off-by: Sebastian Andrzej Siewior &lt;bigeasy@linutronix.de&gt;
Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
</content>
</entry>
<entry>
<title>ubi-utils: fix compilation warnings</title>
<updated>2009-01-16T13:40:54+00:00</updated>
<author>
<name>Artem Bityutskiy</name>
<email>Artem.Bityutskiy@nokia.com</email>
</author>
<published>2009-01-16T13:40:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.infraroot.at/mtd-utils.git/commit/?id=2416fefc0adc6061212e5ccbf166c8c987385527'/>
<id>urn:sha1:2416fefc0adc6061212e5ccbf166c8c987385527</id>
<content type='text'>
Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
</content>
</entry>
<entry>
<title>ubiformat: nicify error messages</title>
<updated>2009-01-16T13:34:28+00:00</updated>
<author>
<name>Artem Bityutskiy</name>
<email>Artem.Bityutskiy@nokia.com</email>
</author>
<published>2009-01-16T13:30:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.infraroot.at/mtd-utils.git/commit/?id=6d9a03eb4f0f5c0b5f917d1092c4d851a392b9fb'/>
<id>urn:sha1:6d9a03eb4f0f5c0b5f917d1092c4d851a392b9fb</id>
<content type='text'>
In case of error, ubiformat prints error messages at the same
line as the previous messages. Fix this.

Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
</content>
</entry>
<entry>
<title>ubi-utils: minor printing fix</title>
<updated>2009-01-15T17:57:15+00:00</updated>
<author>
<name>Artem Bityutskiy</name>
<email>Artem.Bityutskiy@nokia.com</email>
</author>
<published>2009-01-15T17:57:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.infraroot.at/mtd-utils.git/commit/?id=adf9d2c53e05e4ebc1b27cc431157b690f741535'/>
<id>urn:sha1:adf9d2c53e05e4ebc1b27cc431157b690f741535</id>
<content type='text'>
Add missing whitespace in ubimkvol help output

Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
</content>
</entry>
<entry>
<title>libubi: remove some too verbose messages</title>
<updated>2008-12-16T07:52:40+00:00</updated>
<author>
<name>Artem Bityutskiy</name>
<email>Artem.Bityutskiy@nokia.com</email>
</author>
<published>2008-12-16T07:52:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.infraroot.at/mtd-utils.git/commit/?id=ef1e909207cd901871d60a916e4b7ff7b3e97d7d'/>
<id>urn:sha1:ef1e909207cd901871d60a916e4b7ff7b3e97d7d</id>
<content type='text'>
Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
</content>
</entry>
<entry>
<title>libubi: be more verbose about errors</title>
<updated>2008-12-10T14:26:53+00:00</updated>
<author>
<name>Artem Bityutskiy</name>
<email>Artem.Bityutskiy@nokia.com</email>
</author>
<published>2008-12-10T14:26:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.infraroot.at/mtd-utils.git/commit/?id=3c75b1f1f0b2839e2c62bf02bf0385bea1d87315'/>
<id>urn:sha1:3c75b1f1f0b2839e2c62bf02bf0385bea1d87315</id>
<content type='text'>
Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
</content>
</entry>
</feed>
