<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <link>http://nxr.netbsd.org/rss/src/sys/arch/ews4800mips/stand/boot/Makefile</link>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2005</copyright>
    <generator>Java</generator>
    
<item>
    <title>Bump kernel size slightly</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.27</description>
    <pubDate>Fri May 09 18:44:06 UTC 2025</pubDate>
    <dc:creator>martin</dc:creator>
</item>

<item>
    <title>Remove a trailing tab.</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.26</description>
    <pubDate>Sun Apr 27 04:44:44 UTC 2025</pubDate>
    <dc:creator>tsutsui</dc:creator>
</item>

<item>
    <title>branches:  1.25.26;<br/>Use -fno-unwind-tables to shrink boot binaries a bit.</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.25</description>
    <pubDate>Sun Jun 07 03:02:42 UTC 2020</pubDate>
    <dc:creator>tsutsui</dc:creator>
</item>

<item>
    <title>Bump size.</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.24</description>
    <pubDate>Mon Dec 23 19:28:04 UTC 2019</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>ELF2ECOFF -&gt; MIPS_ELF2ECOFF</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.23</description>
    <pubDate>Tue Jan 01 19:41:04 UTC 2019</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>branches:  1.22.12;  1.22.14;<br/>centralize vers.c building for standalone programs.</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.22</description>
    <pubDate>Sat Apr 08 19:53:20 UTC 2017</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>branches:  1.21.2;<br/>The booter contains a kernel which contains a ramdisk. The kernel grew<br/>and does not fit in the booter anymore, grow it a bit.</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.21</description>
    <pubDate>Tue Sep 20 20:56:57 UTC 2016</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>Avoid the PIE</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.20</description>
    <pubDate>Thu Sep 08 14:42:33 UTC 2016</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>branches:  1.19.4;  1.19.8;<br/>Use ${TOOL_GZIP_N} instead of ${TOOL_GZIP} -n, and similarly<br/>use ${TOOL_GZIP_N} -9 instead of ${TOOL_GZIP} -9n, etc.<br/><br/>This will pass -nT instead of just -n if the gzip program is<br/>actually pigz.</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.19</description>
    <pubDate>Tue Aug 05 15:40:59 UTC 2014</pubDate>
    <dc:creator>apb</dc:creator>
</item>

<item>
    <title>branches:  1.18.2;<br/>Workaround weird "nbmake[8]: Graph cycles through `clean'" errors.</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.18</description>
    <pubDate>Fri Jan 31 19:25:14 UTC 2014</pubDate>
    <dc:creator>tsutsui</dc:creator>
</item>

<item>
    <title>Pass the -n flag to gzip invocations.<br/><br/>This prevents it from embedding a timestamp in the output.  We pass<br/>"-n" unconditionally, not conditional on MKREPRO, because many other<br/>invocations of gzip already passed the -n flag unconditionally.</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.17</description>
    <pubDate>Mon Jan 27 21:37:17 UTC 2014</pubDate>
    <dc:creator>apb</dc:creator>
</item>

<item>
    <title>Add empty LIBCRTI= as LIBCRT0 to build sa programs without installed DESTDIR.<br/><br/>XXX: probabry we should have bsd.saprog.mk or something.</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.16</description>
    <pubDate>Sun Jan 12 15:26:29 UTC 2014</pubDate>
    <dc:creator>tsutsui</dc:creator>
</item>

<item>
    <title>branches:  1.15.6;  1.15.10;<br/>Apply the following patch submitted by Evgeniy Ivanov:<br/>http://mail-index.NetBSD.org/tech-kern/2011/12/15/msg012226.html<br/>http://mail-index.NetBSD.org/tech-kern/2011/12/17/msg012229.html<br/><br/> - add 'ls' op to struct fs_ops to support ls command on each fs,<br/>   enabled by -DLIBSA_ENABLE_LS_OP and SAMISCMAKEFLAGS+="SA_ENABLE_LS_OP=yes"<br/>   in libsa<br/> - split sys/lib/libsa/ufs_ls.c into UFS specific part and MI part (ls.c)<br/>   that opens the target fs and calls fs-depedent XXX_ls() functions<br/> - add a ls op for ext2fs<br/>   (all other fs than ufs and ext2fs don't have actual ls ops yet)<br/> - replace existing MD ufs_ls() calls with this new MI ls()<br/><br/>The original patch was written for i386 and ext2fs.<br/>zaurus zboot has been tested by nonaka@.<br/>ews4800mips and x68k loaders have been tested by me (with several fixes).<br/>landisk might be okay since it was almost copied from i386.<br/><br/>XXX1: "ls" op in fs_ops looks a bit inconsistent, but we will be able to<br/>      replace it with real fs ops like readdir if it's really worth<br/>XXX2: someone might have to check sys/arch/ia64/stand/efi/libefi/efifs_ls.c</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.15</description>
    <pubDate>Sun Dec 25 06:09:08 UTC 2011</pubDate>
    <dc:creator>tsutsui</dc:creator>
</item>

<item>
    <title>branches:  1.14.2;  1.14.6;<br/>Use TOOL_GZIP</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.14</description>
    <pubDate>Sun Jul 10 23:35:12 UTC 2011</pubDate>
    <dc:creator>matt</dc:creator>
</item>

<item>
    <title>apply some -fno-strict-aliasing</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.13</description>
    <pubDate>Thu Jul 07 06:01:30 UTC 2011</pubDate>
    <dc:creator>mrg</dc:creator>
</item>

<item>
    <title>Drop bootprog_maker (formerly enabled by -M) and bootprog_date (formerly<br/>disabled by -D) from the output of newvers_stand.sh.  Change -D to the<br/>inverted logic, so that it adds the date to bootprog_rev in ().<br/><br/>Change all platforms accordingly. -D is added if MKREPRO is not yes and<br/>wasn't present before. Platforms that didn't use -D don't depend on<br/>MKREPRO now either.</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.12</description>
    <pubDate>Sat Jan 22 19:19:17 UTC 2011</pubDate>
    <dc:creator>joerg</dc:creator>
</item>

<item>
    <title>branches:  1.11.2;  1.11.4;<br/>Introduce .WAIT into the cleandir rule for blasting the libsa/libkern/etc.<br/>trees, because it can race with the libsa/libkern/etc. makefiles' own<br/>cleandir rules. I think I've found all of the uses of the offending idiom...<br/>Closes PR 43360.</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.11</description>
    <pubDate>Thu May 27 06:58:13 UTC 2010</pubDate>
    <dc:creator>dholland</dc:creator>
</item>

<item>
    <title>branches:  1.10.2;  1.10.4;<br/>Remove obsolete LIBSA_USE_MEMCPY and LIBSA_USE_MEMSET.<br/>They were removed from &lt;lib/libsa/stand.h&gt; on December 2007.</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.10</description>
    <pubDate>Fri Apr 03 10:38:12 UTC 2009</pubDate>
    <dc:creator>tsutsui</dc:creator>
</item>

<item>
    <title>- use &lt;bsd.klinks.mk&gt; to create symlinks to MD system header directories<br/>- suppress warnings on build without DESTDIR</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.9</description>
    <pubDate>Sun Mar 15 06:17:03 UTC 2009</pubDate>
    <dc:creator>tsutsui</dc:creator>
</item>

<item>
    <title>branches:  1.8.2;  1.8.8;<br/>Change boot messages to replace build date and maker with kernrev.</title>
    <description>/src/sys/arch/ews4800mips/stand/boot/Makefile - 1.8</description>
    <pubDate>Wed Jul 16 14:45:17 UTC 2008</pubDate>
    <dc:creator>tsutsui</dc:creator>
</item>
</channel></rss>

