<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/boot, branch release/4.0.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>2000-03-20T08:47:53+00:00</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2000-03-20T08:47:53+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=7e6cd705f344de2f9f08475a0fa2ef9191f88dd0'/>
<id>7e6cd705f344de2f9f08475a0fa2ef9191f88dd0</id>
<content type='text'>
'RELENG_4_0_0_RELEASE'.

This commit was manufactured to restore the state of the 4.0-RELEASE image.
Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
'RELENG_4_0_0_RELEASE'.

This commit was manufactured to restore the state of the 4.0-RELEASE image.
Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
</pre>
</div>
</content>
</entry>
<entry>
<title>This commit was manufactured by cvs2svn to create branch 'RELENG_4'.</title>
<updated>2000-03-13T04:59:44+00:00</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2000-03-13T04:59:44+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=842f30848780866cb822fe01c4d3d4576718ddb3'/>
<id>842f30848780866cb822fe01c4d3d4576718ddb3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix the loader to handle module dependencies properly. More fixes</title>
<updated>2000-02-25T05:10:44+00:00</updated>
<author>
<name>Boris Popov</name>
<email>bp@FreeBSD.org</email>
</author>
<published>2000-02-25T05:10:44+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=ce0d1c79c30d1c17fa7327040ff66700ee17cada'/>
<id>ce0d1c79c30d1c17fa7327040ff66700ee17cada</id>
<content type='text'>
will be provided after modmetadata appears in the kernel.

Reviewed by:	msmith
Approved by:	jkh
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
will be provided after modmetadata appears in the kernel.

Reviewed by:	msmith
Approved by:	jkh
</pre>
</div>
</content>
</entry>
<entry>
<title>Close a file descriptor leak in the code which loads file objects.</title>
<updated>2000-02-17T02:19:19+00:00</updated>
<author>
<name>Mike Smith</name>
<email>msmith@FreeBSD.org</email>
</author>
<published>2000-02-17T02:19:19+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=51b5739aaff32bc688174defb9521a8ba2c96db0'/>
<id>51b5739aaff32bc688174defb9521a8ba2c96db0</id>
<content type='text'>
Submitted by:	Paul Saab &lt;paul@mu.org&gt;
Approved by:	jkh
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Submitted by:	Paul Saab &lt;paul@mu.org&gt;
Approved by:	jkh
</pre>
</div>
</content>
</entry>
<entry>
<title>This patch to BTX fixes several small things:</title>
<updated>2000-02-16T07:00:16+00:00</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2000-02-16T07:00:16+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=536fcb08bf9a1ccbe678717b26d960f8c8b60325'/>
<id>536fcb08bf9a1ccbe678717b26d960f8c8b60325</id>
<content type='text'>
1) Fix a bug in the int15 function 87 emulation where we only copied half
   of what the BIOS asked for.  This caused the Mylex RAID adapter to go
   haywire and start trashing memory when you tried to boot from it.
2) Don't use interrupt 19 to reboot.  Instead, set the reboot flag to a warm
   boot and jump to the BIOS's reboot handler.  int 19 doesn't clear memory
   or restore the interrupt vector table, and thus really isn't safe.  For
   example, when booting off of PXE, the PXE BIOS eats up a chunk of memory
   for its internal data and structures.  Since we rebooted via int 19,
   using the 'reboot' command in the loader resulted in that memory not
   being reclaimed by the BIOS.  Thus, after a few PXE boots, the system
   was out of lower memory.
3) Catch any int 19 calls made by a BTX client or a user pressing
   Ctrl-Alt-Delete and shutdown BTX and reboot the machine cleanly.  This
   fixes Ctrl-Alt-Delete in the loader and in boot2 instead of presenting
   the user with a BTX fault.

Approved by:	jkh
Found by:	1) by msmith
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
1) Fix a bug in the int15 function 87 emulation where we only copied half
   of what the BIOS asked for.  This caused the Mylex RAID adapter to go
   haywire and start trashing memory when you tried to boot from it.
2) Don't use interrupt 19 to reboot.  Instead, set the reboot flag to a warm
   boot and jump to the BIOS's reboot handler.  int 19 doesn't clear memory
   or restore the interrupt vector table, and thus really isn't safe.  For
   example, when booting off of PXE, the PXE BIOS eats up a chunk of memory
   for its internal data and structures.  Since we rebooted via int 19,
   using the 'reboot' command in the loader resulted in that memory not
   being reclaimed by the BIOS.  Thus, after a few PXE boots, the system
   was out of lower memory.
3) Catch any int 19 calls made by a BTX client or a user pressing
   Ctrl-Alt-Delete and shutdown BTX and reboot the machine cleanly.  This
   fixes Ctrl-Alt-Delete in the loader and in boot2 instead of presenting
   the user with a BTX fault.

Approved by:	jkh
Found by:	1) by msmith
</pre>
</div>
</content>
</entry>
<entry>
<title>Support the new ata(4) syntax, while providing backward compatibility for wd(4).</title>
<updated>2000-02-09T19:23:46+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2000-02-09T19:23:46+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=a6120246a29ada4e2fec82e93f3c7a8e16a396fc'/>
<id>a6120246a29ada4e2fec82e93f3c7a8e16a396fc</id>
<content type='text'>
Reviewed by:	jkh, msmith, sos
Approved by:	jkh
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed by:	jkh, msmith, sos
Approved by:	jkh
</pre>
</div>
</content>
</entry>
<entry>
<title>Synced with sys/boot/i386/loader/Makefile rev 1.41.</title>
<updated>2000-02-05T02:21:31+00:00</updated>
<author>
<name>KATO Takenori</name>
<email>kato@FreeBSD.org</email>
</author>
<published>2000-02-05T02:21:31+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=080be1dd6ab13864e0717cac7367de23428f04bd'/>
<id>080be1dd6ab13864e0717cac7367de23428f04bd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a NOFORTH variable so we can build a smaller loader without</title>
<updated>2000-02-04T20:57:09+00:00</updated>
<author>
<name>Luigi Rizzo</name>
<email>luigi@FreeBSD.org</email>
</author>
<published>2000-02-04T20:57:09+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=2dea85d508977573e90901ee05cb1ba8d9b5a99b'/>
<id>2dea85d508977573e90901ee05cb1ba8d9b5a99b</id>
<content type='text'>
Forth support, for use with PicoBSD

Approved-By: jordan
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Forth support, for use with PicoBSD

Approved-By: jordan
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bogon in previous commit.  Re-enable Forth in the loader.</title>
<updated>2000-01-30T06:56:27+00:00</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2000-01-30T06:56:27+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=4e60d653ce0e33c980b63ddb047b73b1009289f6'/>
<id>4e60d653ce0e33c980b63ddb047b73b1009289f6</id>
<content type='text'>
Noticed by:	dcs
Approved by:	jkh
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Noticed by:	dcs
Approved by:	jkh
</pre>
</div>
</content>
</entry>
<entry>
<title>Synced with sys/boot/i386/btx/btx/btx.s rev 1.14.</title>
<updated>2000-01-29T13:48:36+00:00</updated>
<author>
<name>KATO Takenori</name>
<email>kato@FreeBSD.org</email>
</author>
<published>2000-01-29T13:48:36+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=0219f40756eec356a6179b70a260d9d25553562d'/>
<id>0219f40756eec356a6179b70a260d9d25553562d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
