<feed xmlns='http://www.w3.org/2005/Atom'>
<title>busybox-w32/modutils, branch 1_11_1</title>
<subtitle>A mirror of https://github.com/rmyorston/busybox-w32.git
</subtitle>
<id>https://git.lua4.win/busybox-w32/atom?h=1_11_1</id>
<link rel='self' href='https://git.lua4.win/busybox-w32/atom?h=1_11_1'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/'/>
<updated>2008-06-25T09:53:17+00:00</updated>
<entry>
<title>whitespace fixes. no code changes</title>
<updated>2008-06-25T09:53:17+00:00</updated>
<author>
<name>Denis Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2008-06-25T09:53:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=7049ff8696c3c2a1be0f9901d7e2473568b8f918'/>
<id>urn:sha1:7049ff8696c3c2a1be0f9901d7e2473568b8f918</id>
<content type='text'>
</content>
</entry>
<entry>
<title>changes in comments only</title>
<updated>2008-06-24T16:08:22+00:00</updated>
<author>
<name>Denis Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2008-06-24T16:08:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=fe733a974457dae2126edf6b2e2bae594418ad74'/>
<id>urn:sha1:fe733a974457dae2126edf6b2e2bae594418ad74</id>
<content type='text'>
</content>
</entry>
<entry>
<title>mdoprobe: fix SEGV bug (by Vlad Dronnikov)</title>
<updated>2008-06-22T16:59:46+00:00</updated>
<author>
<name>Denis Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2008-06-22T16:59:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=8124a96c3492efbeba00fe1999e6c67fb236ba2f'/>
<id>urn:sha1:8124a96c3492efbeba00fe1999e6c67fb236ba2f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>whitespace and comment fixes, no code changes</title>
<updated>2008-06-16T04:09:25+00:00</updated>
<author>
<name>Denis Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2008-06-16T04:09:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=f45c4f41b792e4b7c52eaf21b9540112887e861b'/>
<id>urn:sha1:f45c4f41b792e4b7c52eaf21b9540112887e861b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>replace single-char printf's with bb_putchar</title>
<updated>2008-06-05T06:51:06+00:00</updated>
<author>
<name>Denis Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2008-06-05T06:51:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=7d60fc1c0a96983d0909f50f8db26ca1b770b039'/>
<id>urn:sha1:7d60fc1c0a96983d0909f50f8db26ca1b770b039</id>
<content type='text'>
</content>
</entry>
<entry>
<title>config help text: fix capitalization</title>
<updated>2008-06-04T22:41:14+00:00</updated>
<author>
<name>Denis Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2008-06-04T22:41:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=e7860e358e01d802b66f939a9b7ddd82f4cebe73'/>
<id>urn:sha1:e7860e358e01d802b66f939a9b7ddd82f4cebe73</id>
<content type='text'>
</content>
</entry>
<entry>
<title>- add FIXME. Perhaps somebody is interrested in looking into this one.</title>
<updated>2008-06-02T19:23:47+00:00</updated>
<author>
<name>Bernhard Reutner-Fischer</name>
<email>rep.dot.nop@gmail.com</email>
</author>
<published>2008-06-02T19:23:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=6075b2aee08f0ed6e4380c28e8f5152a52fad773'/>
<id>urn:sha1:6075b2aee08f0ed6e4380c28e8f5152a52fad773</id>
<content type='text'>
  We would try to be clever and compare the *data instead of the *elt.

Somethink like this might be of more general use:
/* Unlink arbitrary element from the list that contains data */
void llist_unlink_data(llist_t **head, void *data)
{
    llist_t *elt;

    for (elt = *head; elt; elt = elt-&gt;link) {
        if (elt-&gt;data == data) {
            llist_unlink(elt);
            return;
        }
    }
}

</content>
</entry>
<entry>
<title>- add alias support</title>
<updated>2008-06-02T18:59:16+00:00</updated>
<author>
<name>Bernhard Reutner-Fischer</name>
<email>rep.dot.nop@gmail.com</email>
</author>
<published>2008-06-02T18:59:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=c2741e1f72d77e8bd46c932d6d7b12286d5d338c'/>
<id>urn:sha1:c2741e1f72d77e8bd46c932d6d7b12286d5d338c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>- revert revision 22183 since it breaks -b /abs /abs/path/to/mod.ko</title>
<updated>2008-06-02T13:40:13+00:00</updated>
<author>
<name>Bernhard Reutner-Fischer</name>
<email>rep.dot.nop@gmail.com</email>
</author>
<published>2008-06-02T13:40:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=ef729dd90c72d69523871b69ebb34fa367800a69'/>
<id>urn:sha1:ef729dd90c72d69523871b69ebb34fa367800a69</id>
<content type='text'>
</content>
</entry>
<entry>
<title>- just chdir to the basedir (-30b).</title>
<updated>2008-06-02T13:34:36+00:00</updated>
<author>
<name>Bernhard Reutner-Fischer</name>
<email>rep.dot.nop@gmail.com</email>
</author>
<published>2008-06-02T13:34:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=d42816763f2414117d01a950c0dc2ed4dd3146eb'/>
<id>urn:sha1:d42816763f2414117d01a950c0dc2ed4dd3146eb</id>
<content type='text'>
</content>
</entry>
</feed>
