<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/boot/efi/loader, branch release/5.3.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>2004-11-04T19:12:42+00:00</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2004-11-04T19:12:42+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=3f86d8a2ea3f3265afaa1fd263b0004c5c000e69'/>
<id>3f86d8a2ea3f3265afaa1fd263b0004c5c000e69</id>
<content type='text'>
'RELENG_5_3_0_RELEASE'.

This commit was manufactured to restore the state of the 5.3-RELEASE image.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
'RELENG_5_3_0_RELEASE'.

This commit was manufactured to restore the state of the 5.3-RELEASE image.
</pre>
</div>
</content>
</entry>
<entry>
<title>Catch up with change to &lt;machine/pte.h&gt;.</title>
<updated>2004-08-10T02:08:57+00:00</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>2004-08-10T02:08:57+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=0797d69c788530f4ddbf9d96a03e08dad0cd1661'/>
<id>0797d69c788530f4ddbf9d96a03e08dad0cd1661</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 creation of EFI images that got broken by the import of</title>
<updated>2004-07-20T07:01:02+00:00</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>2004-07-20T07:01:02+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=8af8df6452175af1632c5ed37e6f656481670170'/>
<id>8af8df6452175af1632c5ed37e6f656481670170</id>
<content type='text'>
binutils 2.15. The linker now creates a .rela.dyn section for
dynamic relocations, while our script created a .rela section.
Likewise, we copied the .rela section to the EFI image, but not
the .rela.dyn section. The fix is to rename .rela to .rela.dyn
in the linker script so that all relocations end up in the same
section again. This we copy into the EFI image.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
binutils 2.15. The linker now creates a .rela.dyn section for
dynamic relocations, while our script created a .rela section.
Likewise, we copied the .rela section to the EFI image, but not
the .rela.dyn section. The fix is to rename .rela to .rela.dyn
in the linker script so that all relocations end up in the same
section again. This we copy into the EFI image.
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't create a mapfile during link. It's not needed for the build.</title>
<updated>2004-02-13T04:45:41+00:00</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>2004-02-13T04:45:41+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=317872f26c1377a0bd6cb0b959859b25e8080922'/>
<id>317872f26c1377a0bd6cb0b959859b25e8080922</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Tidy up makefiles.</title>
<updated>2004-02-12T08:10:34+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2004-02-12T08:10:34+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=5c8f32a869ce6c872345ac916a6462aa036b19d6'/>
<id>5c8f32a869ce6c872345ac916a6462aa036b19d6</id>
<content type='text'>
Tested by:	marcel
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Tested by:	marcel
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't hardcode unit 0 for the current device if we're loaded from an</title>
<updated>2003-08-02T08:22:03+00:00</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>2003-08-02T08:22:03+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=e4ec6fb518f2d8ca3dfba4a358f9410c777c6ac8'/>
<id>e4ec6fb518f2d8ca3dfba4a358f9410c777c6ac8</id>
<content type='text'>
EFI file system. When booting from a CD and there's already an EFI
system partition on the disk, setting the current device to unit 0
will select the harddisk. This invariably breaks installing FreeBSD
when other operating systems have been installed before.

We obviously want to do the same when we're booting over the network.
Maybe later.

Based on a patch (from memory) from: arun
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
EFI file system. When booting from a CD and there's already an EFI
system partition on the disk, setting the current device to unit 0
will select the harddisk. This invariably breaks installing FreeBSD
when other operating systems have been installed before.

We obviously want to do the same when we're booting over the network.
Maybe later.

Based on a patch (from memory) from: arun
</pre>
</div>
</content>
</entry>
<entry>
<title>Use __FBSDID rather than rcsid[].</title>
<updated>2003-04-03T21:36:33+00:00</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2003-04-03T21:36:33+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=8368cf8f75949c1d998e41a4b98fc8d6db4332de'/>
<id>8368cf8f75949c1d998e41a4b98fc8d6db4332de</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Speed up debugging in the context of unexpected traps by printing</title>
<updated>2003-03-01T05:18:28+00:00</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>2003-03-01T05:18:28+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=59c9bb54ee9f788e7a3e3c17027f3f770ca200af'/>
<id>59c9bb54ee9f788e7a3e3c17027f3f770ca200af</id>
<content type='text'>
the address of the image base of the loader. Given cr.iip, we can
use the symbol table to figure out what function caused the trap.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the address of the image base of the loader. Given cr.iip, we can
use the symbol table to figure out what function caused the trap.
</pre>
</div>
</content>
</entry>
<entry>
<title>Consistently use NOFORTH to control the usage of ficl.</title>
<updated>2003-02-26T06:18:52+00:00</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2003-02-26T06:18:52+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=a8896ec82d3e0ad4127d10da713d3716605118d6'/>
<id>a8896ec82d3e0ad4127d10da713d3716605118d6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Renamed the loader's zipfs to gzipfs.  zipfs.c was repo-copied to gzipfs.c.</title>
<updated>2002-12-19T19:34:59+00:00</updated>
<author>
<name>Jake Burkholder</name>
<email>jake@FreeBSD.org</email>
</author>
<published>2002-12-19T19:34:59+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=7c6c018c0c678b02b6002e954ca527159bc569ea'/>
<id>7c6c018c0c678b02b6002e954ca527159bc569ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
