<feed xmlns='http://www.w3.org/2005/Atom'>
<title>busybox-w32/util-linux, branch awk_faster</title>
<subtitle>A mirror of https://github.com/rmyorston/busybox-w32.git
</subtitle>
<id>https://git.lua4.win/busybox-w32/atom?h=awk_faster</id>
<link rel='self' href='https://git.lua4.win/busybox-w32/atom?h=awk_faster'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/'/>
<updated>2020-07-09T12:10:58+00:00</updated>
<entry>
<title>Merge branch 'busybox' into merge</title>
<updated>2020-07-09T12:10:58+00:00</updated>
<author>
<name>Ron Yorston</name>
<email>rmy@pobox.com</email>
</author>
<published>2020-07-09T12:10:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=9c0b2f7020d7c30b21a930ef54be632e092e533b'/>
<id>urn:sha1:9c0b2f7020d7c30b21a930ef54be632e092e533b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>acpid: only display -p if supported in usage</title>
<updated>2020-06-29T12:11:03+00:00</updated>
<author>
<name>Norbert Lange</name>
<email>nolange79@gmail.com</email>
</author>
<published>2020-02-14T21:16:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=79bd7c3f7b37b3b7f85b982bdb4fb9058d6d3a8c'/>
<id>urn:sha1:79bd7c3f7b37b3b7f85b982bdb4fb9058d6d3a8c</id>
<content type='text'>
Signed-off-by: Norbert Lange &lt;nolange79@gmail.com&gt;
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>nologin: make it possible to build it as single applet</title>
<updated>2020-06-24T13:05:22+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2020-06-24T11:39:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=67e1529b921416d6c3f33fb43691bc9919e3eacc'/>
<id>urn:sha1:67e1529b921416d6c3f33fb43691bc9919e3eacc</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'busybox' into merge</title>
<updated>2020-02-15T13:25:04+00:00</updated>
<author>
<name>Ron Yorston</name>
<email>rmy@pobox.com</email>
</author>
<published>2020-02-15T13:25:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=0abe89bc214c9d1f16f32c4339792066b875b7c6'/>
<id>urn:sha1:0abe89bc214c9d1f16f32c4339792066b875b7c6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fdisk: add HFS / HFS+ partition type</title>
<updated>2020-02-14T12:57:41+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2020-02-14T12:57:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=a6e48dead331c3c19e070992d2d571e74a1d9a8d'/>
<id>urn:sha1:a6e48dead331c3c19e070992d2d571e74a1d9a8d</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'busybox' into merge</title>
<updated>2020-01-08T12:30:49+00:00</updated>
<author>
<name>Ron Yorston</name>
<email>rmy@pobox.com</email>
</author>
<published>2020-01-08T12:30:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=a9271a8e97e6e7be5285330d5f19352decabf807'/>
<id>urn:sha1:a9271a8e97e6e7be5285330d5f19352decabf807</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove stime() function calls</title>
<updated>2019-11-19T12:08:25+00:00</updated>
<author>
<name>Alistair Francis</name>
<email>alistair.francis@wdc.com</email>
</author>
<published>2019-11-19T12:06:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=d3539be8f27b8cbfdfee460fe08299158f08bcd9'/>
<id>urn:sha1:d3539be8f27b8cbfdfee460fe08299158f08bcd9</id>
<content type='text'>
stime() has been deprecated in glibc 2.31 and replaced with
clock_settime(). Let's replace the stime() function calls with
clock_settime() in preperation.

function                                             old     new   delta
rdate_main                                           197     224     +27
clock_settime                                          -      27     +27
date_main                                            926     941     +15
stime                                                 37       -     -37
------------------------------------------------------------------------------
(add/remove: 2/2 grow/shrink: 2/0 up/down: 69/-37)             Total: 32 bytes

Signed-off-by: Alistair Francis &lt;alistair.francis@wdc.com&gt;
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>taskset: tighten the check for stride values</title>
<updated>2019-11-09T16:32:43+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2019-11-09T16:32:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=b230fdfa9da2f31e6cc90f90579c6d020c770f86'/>
<id>urn:sha1:b230fdfa9da2f31e6cc90f90579c6d020c770f86</id>
<content type='text'>
function                                             old     new   delta
taskset_main                                         986     987      +1

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>taskset: implement stride argument</title>
<updated>2019-11-09T16:07:44+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2019-11-09T16:05:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=a82fb1b9d8a046e01dbad33bb57d064815d60e5c'/>
<id>urn:sha1:a82fb1b9d8a046e01dbad33bb57d064815d60e5c</id>
<content type='text'>
function                                             old     new   delta
taskset_main                                         925     986     +61

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>taskset: update comment</title>
<updated>2019-11-08T15:32:37+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2019-11-08T15:32:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=e5586605ca3dfa1e4ad2bb5ddea818777846dca2'/>
<id>urn:sha1:e5586605ca3dfa1e4ad2bb5ddea818777846dca2</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
</feed>
