<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/syslinux.git/ldlinux.asm, branch syslinux-3.60-pre3</title>
<subtitle>git.kernel.org: pub/scm/boot/syslinux/syslinux.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/'/>
<entry>
<title>Move most messages into the appropriate .inc files</title>
<updated>2007-06-21T00:43:55+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2007-06-21T00:43:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=a968a43d4f661154f2baadb6798451e565840aa0'/>
<id>a968a43d4f661154f2baadb6798451e565840aa0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Workaround for VMware console bug; make more common code common</title>
<updated>2007-06-21T00:08:23+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2007-06-21T00:08:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=202ed40d7acea163b438f570868e5c00bcb5d805'/>
<id>202ed40d7acea163b438f570868e5c00bcb5d805</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 INT 18h patch offset for the RAID mode (-r) option</title>
<updated>2007-06-07T23:16:30+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2007-06-07T23:16:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=c3ff1927d97099b8e30377a0ee063e716416a751'/>
<id>c3ff1927d97099b8e30377a0ee063e716416a751</id>
<content type='text'>
The calculation of the INT 18h patch offset for RAID mode (-r) was
incorrect.  Fix it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The calculation of the INT 18h patch offset for RAID mode (-r) was
incorrect.  Fix it.
</pre>
</div>
</content>
</entry>
<entry>
<title>"RAID mode": execute INT 18h on boot failure instead of wait for key</title>
<updated>2007-06-02T01:17:46+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2007-06-02T01:17:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=1de6cd492b87c9fbd70bb6e9f9e72b336a81d3a0'/>
<id>1de6cd492b87c9fbd70bb6e9f9e72b336a81d3a0</id>
<content type='text'>
In "RAID mode" we want to execute INT 18h on boot failure instead of
waiting for a user keypress.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In "RAID mode" we want to execute INT 18h on boot failure instead of
waiting for a user keypress.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make it safe to call close_file on an already closed file.</title>
<updated>2007-05-23T06:27:46+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2007-05-23T06:27:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=b901a125510486e190dd841dfa616cafff0c9242'/>
<id>b901a125510486e190dd841dfa616cafff0c9242</id>
<content type='text'>
The SYSLINUX internal API closes a file automatically upon reading
to block EOF (not necessarily file EOF!)  Thus, it's fairly likely
we'll get SI == 0 (closed file) passed to close_file at some point
or another.

Just plain admit it, and make close_file accept SI == 0 by spec.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The SYSLINUX internal API closes a file automatically upon reading
to block EOF (not necessarily file EOF!)  Thus, it's fairly likely
we'll get SI == 0 (closed file) passed to close_file at some point
or another.

Just plain admit it, and make close_file accept SI == 0 by spec.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a proper internal close function (close_file)</title>
<updated>2007-05-23T03:19:34+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2007-05-23T03:19:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=ab1e7a46ba21c5007e29e38ec05d387458cccd6d'/>
<id>ab1e7a46ba21c5007e29e38ec05d387458cccd6d</id>
<content type='text'>
Add a "close_file" function and hook it up to the long-standing comboot
API function.  At the moment, all it does is free up internal
resources; in particular, for PXELINUX it should also really send an
ERROR packet to the server to terminate the connection on that end.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a "close_file" function and hook it up to the long-standing comboot
API function.  At the moment, all it does is free up internal
resources; in particular, for PXELINUX it should also really send an
ERROR packet to the server to terminate the connection on that end.
</pre>
</div>
</content>
</entry>
<entry>
<title>Stealth whitespace cleanup (automated)</title>
<updated>2007-03-15T05:07:09+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2007-03-15T05:07:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=64d7ea7b604c2ca9ab8f7236374b3a1c05005e55'/>
<id>64d7ea7b604c2ca9ab8f7236374b3a1c05005e55</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make sure we can read the config file name even after changing it...</title>
<updated>2007-02-20T02:25:32+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2007-02-20T02:25:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=953510d25bb93fa1508cb24fde994cbb444bdcd2'/>
<id>953510d25bb93fa1508cb24fde994cbb444bdcd2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge with git+ssh://master.kernel.org/pub/scm/boot/syslinux/syslinux.git#syslinux-3.3x</title>
<updated>2007-02-10T21:22:40+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2007-02-10T21:22:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=14df2f8046001f2dc24e1f65bb17c6e31dfbbd09'/>
<id>14df2f8046001f2dc24e1f65bb17c6e31dfbbd09</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>For extension *search*, SYSLINUX should now use the same code as the others.</title>
<updated>2007-02-07T00:36:45+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2007-02-07T00:36:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=945a8c5cb5512e472eb894ffa0520e69b8ab54e8'/>
<id>945a8c5cb5512e472eb894ffa0520e69b8ab54e8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
