<feed xmlns='http://www.w3.org/2005/Atom'>
<title>busybox-w32/coreutils, branch su_cmd3</title>
<subtitle>A mirror of https://github.com/rmyorston/busybox-w32.git
</subtitle>
<id>https://git.lua4.win/busybox-w32/atom?h=su_cmd3</id>
<link rel='self' href='https://git.lua4.win/busybox-w32/atom?h=su_cmd3'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/'/>
<updated>2023-04-18T10:44:57+00:00</updated>
<entry>
<title>dd: omit direct flag</title>
<updated>2023-04-18T10:44:57+00:00</updated>
<author>
<name>Ron Yorston</name>
<email>rmy@pobox.com</email>
</author>
<published>2023-04-18T10:44:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=2eeb7a1e5c5242784a0c24a88042f98b9e69963a'/>
<id>urn:sha1:2eeb7a1e5c5242784a0c24a88042f98b9e69963a</id>
<content type='text'>
O_DIRECT isn't supported with open(2) on Microsoft Windows.

All code related to the 'direct' input/output flag can be omitted.

Saves 160 bytes.
</content>
</entry>
<entry>
<title>Merge branch 'busybox' into merge</title>
<updated>2023-04-17T06:32:52+00:00</updated>
<author>
<name>Ron Yorston</name>
<email>rmy@pobox.com</email>
</author>
<published>2023-04-17T06:32:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=8cdeb571cfbf3bb6edc44779e46537b072b8cd08'/>
<id>urn:sha1:8cdeb571cfbf3bb6edc44779e46537b072b8cd08</id>
<content type='text'>
</content>
</entry>
<entry>
<title>readlink: support --, -n always</title>
<updated>2023-04-16T16:01:44+00:00</updated>
<author>
<name>Eric Blake</name>
<email>eblake@redhat.com</email>
</author>
<published>2023-03-24T14:58:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=d2b81b3dc2b31d32e1060d3ea8bd998d30a37d8a'/>
<id>urn:sha1:d2b81b3dc2b31d32e1060d3ea8bd998d30a37d8a</id>
<content type='text'>
POSIX will be standardizing readlink (just the -n option) and realpath
(just -E and -e options):
https://www.austingroupbugs.net/view.php?id=1457

Change things for readlink so that the POSIX-mandated -n and -- work
even when disabling the non-standard (and partially non-working) -f
when FEATURE_READLINK_FOLLOW is clear.

POSIX also wants readlink to be verbose by default (if the argument is
not a symlink, readlink must output a diagnostic); I did NOT address
that one, because I'm waiting to see what the GNU Coreutils folks do:
https://lists.gnu.org/archive/html/bug-coreutils/2023-03/msg00035.html

Partial fix for https://bugs.busybox.net/show_bug.cgi?id=15466

function                                             old     new   delta
packed_usage                                       34538   34557     +19

Signed-off-by: Eric Blake &lt;eblake@redhat.com&gt;
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>tr: display usage for incorrect arguments</title>
<updated>2023-04-16T15:54:00+00:00</updated>
<author>
<name>Ron Yorston</name>
<email>rmy@pobox.com</email>
</author>
<published>2023-04-16T07:23:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=2ffd8986e21f1782c78e1a9d34f6042af53d876c'/>
<id>urn:sha1:2ffd8986e21f1782c78e1a9d34f6042af53d876c</id>
<content type='text'>
tr must have one or two non-option arguments.  Display the usage
message if any other number is present.

function                                             old     new   delta
.rodata                                           108389  108392      +3
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 1/0 up/down: 3/0)                 Total: 3 bytes

Signed-off-by: Ron Yorston &lt;rmy@pobox.com&gt;
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>shuf: another tweak to COMMON_PREFIX_HACK code</title>
<updated>2023-04-13T01:02:11+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2023-04-12T22:10:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=8b72877babb20be9bb46c4437f5e1870390c29cc'/>
<id>urn:sha1:8b72877babb20be9bb46c4437f5e1870390c29cc</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>shuf: fix pfx_len calculation</title>
<updated>2023-04-12T12:56:05+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2023-04-12T12:56:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=f7065aa9ae54ce0d1772fd2e6f0e0b6862a50b71'/>
<id>urn:sha1:f7065aa9ae54ce0d1772fd2e6f0e0b6862a50b71</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>shuf: remove redundant code</title>
<updated>2023-04-12T12:51:11+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2023-04-12T12:51:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=8696f5d380209e6aba13ffc52eced9239510b275'/>
<id>urn:sha1:8696f5d380209e6aba13ffc52eced9239510b275</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>shuf: add (disabled) code to support very long numbers in -i LO-HI</title>
<updated>2023-04-12T12:47:24+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2023-04-12T12:47:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=238dab322a630b493843a6bdf3203e93db87469a'/>
<id>urn:sha1:238dab322a630b493843a6bdf3203e93db87469a</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>sleep: fix error exit when called as "sh" builtin</title>
<updated>2023-04-12T10:23:36+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2023-04-12T10:23:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=550e6d8fbd05ea0ab60ff3e542327efb4e9cc254'/>
<id>urn:sha1:550e6d8fbd05ea0ab60ff3e542327efb4e9cc254</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>seq: fix yet another case of negative parameters not working</title>
<updated>2023-04-11T18:29:59+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2023-04-11T18:29:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=478b5ac2bcdb5014d8e6a6e8d7647b4c599cc1a7'/>
<id>urn:sha1:478b5ac2bcdb5014d8e6a6e8d7647b4c599cc1a7</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
</feed>
