<feed xmlns='http://www.w3.org/2005/Atom'>
<title>busybox-w32/make_single_applets.sh, branch long_paths</title>
<subtitle>A mirror of https://github.com/rmyorston/busybox-w32.git
</subtitle>
<id>https://git.lua4.win/busybox-w32/atom?h=long_paths</id>
<link rel='self' href='https://git.lua4.win/busybox-w32/atom?h=long_paths'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/'/>
<updated>2025-10-29T06:19:46+00:00</updated>
<entry>
<title>Further tweaks to make_single_applets.sh</title>
<updated>2025-10-29T06:19:46+00:00</updated>
<author>
<name>Ron Yorston</name>
<email>rmy@pobox.com</email>
</author>
<published>2025-10-29T06:19:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=84dd08634017588e3019268a008141a859017fbe'/>
<id>urn:sha1:84dd08634017588e3019268a008141a859017fbe</id>
<content type='text'>
Changes to the applet configurations of 'reset' and 'which' in the
Microsoft Windows port resulted in these applets being enabled in
every single-applet executable built by make_single_applets.sh.

Alter the configuration to avoid this.

Remove PLATFORM_POSIX and PLATFORM_MINGW32 from the list of applets
to be built.

(GitHub issue #536)
</content>
</entry>
<entry>
<title>Allow make_single_applets.sh to work for Windows</title>
<updated>2025-10-27T06:40:52+00:00</updated>
<author>
<name>Ron Yorston</name>
<email>rmy@pobox.com</email>
</author>
<published>2025-10-27T06:40:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=74b8e231b9c4f84880bdd20fceb52f5000ce8e32'/>
<id>urn:sha1:74b8e231b9c4f84880bdd20fceb52f5000ce8e32</id>
<content type='text'>
Tweak the make_single_applets.sh script so it works for Windows
builds.

(GitHub issue #536)
</content>
</entry>
<entry>
<title>make_single_applets.sh: switch off nologin deps option</title>
<updated>2020-06-24T14:36:44+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2020-06-24T14:36:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=b02f8ca9098bedad00407fdaf3c3150fc81212ce'/>
<id>urn:sha1:b02f8ca9098bedad00407fdaf3c3150fc81212ce</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>make_single_applets.sh: fix for BSS trick</title>
<updated>2018-12-31T14:18:45+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2018-12-30T19:07:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=8b710ef000c383f3476245b27bacf034532d9786'/>
<id>urn:sha1:8b710ef000c383f3476245b27bacf034532d9786</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>fix make_single_applets.sh</title>
<updated>2018-12-06T13:10:10+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2018-12-06T13:10:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=52c210594cfc78c4d849550890c30a9185f36d9c'/>
<id>urn:sha1:52c210594cfc78c4d849550890c30a9185f36d9c</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>randomconfig fixes</title>
<updated>2017-12-31T16:30:02+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2017-12-31T16:30:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=82d1c1f84ae23793d81b50aa0a753ad7c4db4f51'/>
<id>urn:sha1:82d1c1f84ae23793d81b50aa0a753ad7c4db4f51</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>make_single_applets: fix ": $((fail++))" expansion error</title>
<updated>2017-07-15T17:20:45+00:00</updated>
<author>
<name>Kang-Che Sung</name>
<email>explorer09@gmail.com</email>
</author>
<published>2017-07-15T03:38:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=ed2b9225371a36dd2694df65e395dc32fd94c5dd'/>
<id>urn:sha1:ed2b9225371a36dd2694df65e395dc32fd94c5dd</id>
<content type='text'>
$((fail++)) is not a required expression in POSIX, and in "dash" it
could produce an error like this:

    ./make_single_applets.sh: 61: arithmetic expression: expecting primary: "fail++"

Replace this with something portable: fail=$((fail+1)) would work.

Signed-off-by: Kang-Che Sung &lt;explorer09@gmail.com&gt;
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>sha512: use larger constant table only if sha512 is in fact selected</title>
<updated>2017-01-15T19:16:27+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2017-01-15T19:16:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=b8935d00b0a60be24ee9073349c2a185cebbacd4'/>
<id>urn:sha1:b8935d00b0a60be24ee9073349c2a185cebbacd4</id>
<content type='text'>
function                                             old     new   delta
sha_K                                                640     256    -384

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>make_single_applets.sh: show errors and warnings</title>
<updated>2017-01-09T15:31:21+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2017-01-09T15:31:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=e7b54d0fcce26fdbb0559728e317fb852c63e02b'/>
<id>urn:sha1:e7b54d0fcce26fdbb0559728e317fb852c63e02b</id>
<content type='text'>
While at it, fix one warning in modprobe-small.c

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>make_single_applets.sh: SH_IS_HUSH needs special handling too</title>
<updated>2016-12-23T18:42:53+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2016-12-23T18:42:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=7d5c881bd0cbf3cb1a755acf95a00b37625f7628'/>
<id>urn:sha1:7d5c881bd0cbf3cb1a755acf95a00b37625f7628</id>
<content type='text'>
Well, in fact it works (make oldconfig throws only a warning when it sees
both SH_IS_HUSH=y and SH_IS_NONE=y), but let's be nice.

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
</feed>
