<feed xmlns='http://www.w3.org/2005/Atom'>
<title>forks/toybox/scripts, branch 0.4.8</title>
<subtitle>Toybox with POSIX patches from E5ten
</subtitle>
<id>https://git.carbslinux.org/forks/toybox/atom?h=0.4.8</id>
<link rel='self' href='https://git.carbslinux.org/forks/toybox/atom?h=0.4.8'/>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/'/>
<updated>2014-04-16T12:49:32+00:00</updated>
<entry>
<title>Probe for the existence of FIFREEZE and make fsfreeze depend on it.</title>
<updated>2014-04-16T12:49:32+00:00</updated>
<author>
<name>Rob Landley</name>
<email>rob@landley.net</email>
</author>
<published>2014-04-16T12:49:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=76e1cb3ada7fb12f38e248a08c2deedc5c9ce888'/>
<id>urn:sha1:76e1cb3ada7fb12f38e248a08c2deedc5c9ce888</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Probes for O_NOFOLLOW that compile and run something aren't compatible with cross compiling, so just #define it to 0 if it's not in fcntl.h where posix-2008 says.</title>
<updated>2014-04-16T02:59:42+00:00</updated>
<author>
<name>Rob Landley</name>
<email>rob@landley.net</email>
</author>
<published>2014-04-16T02:59:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=15027d6de049fa139a193abc5a86e6578faf630d'/>
<id>urn:sha1:15027d6de049fa139a193abc5a86e6578faf630d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>_mkflags_ had an issue for generating FLAG_xxxx macros for long options.</title>
<updated>2014-04-09T12:40:02+00:00</updated>
<author>
<name>Ashwini Sharma</name>
<email>ak.ashwini1981@gmail.com</email>
</author>
<published>2014-04-09T12:40:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=882ca8bf5b19982a641c200e473d114b78aca3c2'/>
<id>urn:sha1:882ca8bf5b19982a641c200e473d114b78aca3c2</id>
<content type='text'>
Only the first __long__ option, without any __short__ option had a proper
flag value, rest all were defined to ZERO. Becaus the _flist_ was not moved
to the next in this case.
</content>
</entry>
<entry>
<title>generated/help.h is a lot easier to read with an extra newline between each help entry.</title>
<updated>2014-04-07T17:53:24+00:00</updated>
<author>
<name>Rob Landley</name>
<email>rob@landley.net</email>
</author>
<published>2014-04-07T17:53:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=e6314da6fe9b251448e6a4a2cab12e256688ab5d'/>
<id>urn:sha1:e6314da6fe9b251448e6a4a2cab12e256688ab5d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>There are cases when the long options are of the format abc-def. In current implementation FLAG_xxx macros are generated for long options too. with __-__ sign in the macro, it will generate errors.</title>
<updated>2014-03-19T18:57:06+00:00</updated>
<author>
<name>Ashwini Sharma</name>
<email>ak.ashwini1981@gmail.com</email>
</author>
<published>2014-03-19T18:57:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=64f61640880011b991931ac30371719edd88e65d'/>
<id>urn:sha1:64f61640880011b991931ac30371719edd88e65d</id>
<content type='text'>
I am of the opinion that __-__ be converted to '_' for generating the FLAG_xxx macros and be used in the command.

This will enable the user to 'abc-def', but be handled like 'abc_def' in code.
</content>
</entry>
<entry>
<title>Factor out mkpathat.</title>
<updated>2014-03-11T22:50:17+00:00</updated>
<author>
<name>Rob Landley</name>
<email>rob@landley.net</email>
</author>
<published>2014-03-11T22:50:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=fad38c7d1675a34a350fb1d99fb6b66728cad8a7'/>
<id>urn:sha1:fad38c7d1675a34a350fb1d99fb6b66728cad8a7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix header file generation to not be confused by empty (but non-NULL) option string.</title>
<updated>2014-03-01T02:46:16+00:00</updated>
<author>
<name>Rob Landley</name>
<email>rob@landley.net</email>
</author>
<published>2014-03-01T02:46:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=170c397576f7d34f41dc7579a3ed5bd6a2f30c1a'/>
<id>urn:sha1:170c397576f7d34f41dc7579a3ed5bd6a2f30c1a</id>
<content type='text'>
You shouldn't use "" as an option string because a NULL allows toy_init()
to avoid calling the option parsing logic entirely, which lets it drop out
when nothing's using it (ala scripts/single.sh builds). That said, init.c
is currently using a "" option string and a USE_ macro taking advantage
of string concatenation may require a "" option config, so...
</content>
</entry>
<entry>
<title>Put all FOR_xxx blocks after all CLEANUP_xxx in generated/flags.h so the usages don't have to be in alphabetical order.</title>
<updated>2014-02-25T05:34:43+00:00</updated>
<author>
<name>Rob Landley</name>
<email>rob@landley.net</email>
</author>
<published>2014-02-25T05:34:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=6ebe03d6169188b71f6d178cef27f8ecb6407821'/>
<id>urn:sha1:6ebe03d6169188b71f6d178cef27f8ecb6407821</id>
<content type='text'>
</content>
</entry>
<entry>
<title>CLEANUP transitions require all the generated/flags.h stanzas always be present (even for commands disabled in the config) to avoid undefined symbol errors referencing FLAG_ macros.</title>
<updated>2014-02-24T02:11:06+00:00</updated>
<author>
<name>Rob Landley</name>
<email>rob@landley.net</email>
</author>
<published>2014-02-24T02:11:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=e36a9dda21ca656dd5dc96fbbe9eacf7e3995e78'/>
<id>urn:sha1:e36a9dda21ca656dd5dc96fbbe9eacf7e3995e78</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update status page.</title>
<updated>2014-02-22T04:24:02+00:00</updated>
<author>
<name>Rob Landley</name>
<email>rob@landley.net</email>
</author>
<published>2014-02-22T04:24:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=7dbb9826d2a60734b1963c2598c6780ce9962d86'/>
<id>urn:sha1:7dbb9826d2a60734b1963c2598c6780ce9962d86</id>
<content type='text'>
</content>
</entry>
</feed>
