<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/syslinux.git, branch bcopyint</title>
<subtitle>git.kernel.org: pub/scm/boot/syslinux/syslinux.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/syslinux.git/'/>
<entry>
<title>Make sure we don't use any upper-memory stack during shuffle</title>
<updated>2008-02-23T05:16:36+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-02-23T05:16:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/syslinux.git/commit/?id=e77a16e07a595de7eafa55e7fb95a1376c9827a1'/>
<id>e77a16e07a595de7eafa55e7fb95a1376c9827a1</id>
<content type='text'>
We want to make sure everything stays below 7C00h during the
shuffle_and_boot operation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We want to make sure everything stays below 7C00h during the
shuffle_and_boot operation.
</pre>
</div>
</content>
</entry>
<entry>
<title>Unify trampoline_to_pm</title>
<updated>2008-02-23T01:40:31+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-02-23T01:40:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/syslinux.git/commit/?id=bd7a247baaeec472f7dbff56b4f38ba760651759'/>
<id>bd7a247baaeec472f7dbff56b4f38ba760651759</id>
<content type='text'>
Remove the last ad hoc protected-mode entry, in trampoline_to_pm.

Now all protected-mode entry and exit is via enter_pm/exit_pm.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove the last ad hoc protected-mode entry, in trampoline_to_pm.

Now all protected-mode entry and exit is via enter_pm/exit_pm.
</pre>
</div>
</content>
</entry>
<entry>
<title>Unify the protected-mode entry/exit code</title>
<updated>2008-02-23T01:29:29+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-02-23T01:29:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/syslinux.git/commit/?id=717b437463884ac8a0dda6ff091de98346a9a98d'/>
<id>717b437463884ac8a0dda6ff091de98346a9a98d</id>
<content type='text'>
Unify the protected-mode entry and exit code.  We now always provide
interrupt thunking services, even during bcopy.  That way we never
leave interrupts disabled for too long, even in extreme circumstances.

This should permit portions of the core to be written as
protected-mode code, which could be compiled with gcc if desirable.

This removes the RBFG hack from PXELINUX.  As far as I can tell, RBFG
is no longer widely used, with Etherboot-based solutions being used
instead.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Unify the protected-mode entry and exit code.  We now always provide
interrupt thunking services, even during bcopy.  That way we never
leave interrupts disabled for too long, even in extreme circumstances.

This should permit portions of the core to be written as
protected-mode code, which could be compiled with gcc if desirable.

This removes the RBFG hack from PXELINUX.  As far as I can tell, RBFG
is no longer widely used, with Etherboot-based solutions being used
instead.
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow MENU EXIT to specify a menu tag</title>
<updated>2008-02-22T19:16:45+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-02-22T19:16:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/syslinux.git/commit/?id=6152d7affa392c8233b527b5800299f0b38246f0'/>
<id>6152d7affa392c8233b527b5800299f0b38246f0</id>
<content type='text'>
Allow MENU EXIT to "exit" to an arbitrary menu.  This is really just a
variant of "MENU GOTO", but it allows displaying an exit marker.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allow MENU EXIT to "exit" to an arbitrary menu.  This is really just a
variant of "MENU GOTO", but it allows displaying an exit marker.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix the handling of hotkeys in MENU LABEL on submenus</title>
<updated>2008-02-22T19:03:34+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-02-22T19:03:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/syslinux.git/commit/?id=44e9cab0e6bc5a7a75d8470e7a4ba41d739f4a37'/>
<id>44e9cab0e6bc5a7a75d8470e7a4ba41d739f4a37</id>
<content type='text'>
Two bugs:

- We didn't strip ^ symbols inheriting from MENU LABEL to MENU TITLE
- We did consider_for_hotkey() with the wrong menu (the submenu
  itself, as opposed to the parent menu.)

As part of these changes, make a function available to create an
uninitialized, mutable refstring (that can be constructed and then
used as a refstring, that is.)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Two bugs:

- We didn't strip ^ symbols inheriting from MENU LABEL to MENU TITLE
- We did consider_for_hotkey() with the wrong menu (the submenu
  itself, as opposed to the parent menu.)

As part of these changes, make a function available to create an
uninitialized, mutable refstring (that can be constructed and then
used as a refstring, that is.)
</pre>
</div>
</content>
</entry>
<entry>
<title>NEWS: Document Bruce Robson's Adaptec bug fix</title>
<updated>2008-02-22T02:49:43+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-02-22T02:49:43+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/syslinux.git/commit/?id=728ef8ec0fc80014676bb55ded7136353ce6eff4'/>
<id>728ef8ec0fc80014676bb55ded7136353ce6eff4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>realloc(): try to protect a block in the path of a growing object</title>
<updated>2008-02-22T02:17:49+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-02-22T02:17:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/syslinux.git/commit/?id=2b20b079f22f236eed97b920672f57821c5974ba'/>
<id>2b20b079f22f236eed97b920672f57821c5974ba</id>
<content type='text'>
When we realloc() a block larger, try to protect the free block
following it from being immediately allocated by something else by
placing it at the end of the freelist instead of the beginning.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When we realloc() a block larger, try to protect the free block
following it from being immediately allocated by something else by
placing it at the end of the freelist instead of the beginning.
</pre>
</div>
</content>
</entry>
<entry>
<title>realloc(): better implementation allowing in-place growth</title>
<updated>2008-02-22T01:59:56+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-02-22T01:59:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/syslinux.git/commit/?id=ce6265e0c4577aa7871e337cec549b0d844706ce'/>
<id>ce6265e0c4577aa7871e337cec549b0d844706ce</id>
<content type='text'>
Change the realloc() implementation to allow in-place growth.  This is
an important step in handling files without knowing their sizes a
priori.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change the realloc() implementation to allow in-place growth.  This is
an important step in handling files without knowing their sizes a
priori.
</pre>
</div>
</content>
</entry>
<entry>
<title>"begin Ymodem download" is supposed to be an imperative...</title>
<updated>2008-02-20T23:56:33+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-02-20T23:56:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/syslinux.git/commit/?id=427ab5add9a1002b8e8cefe3a85f4497eb977e73'/>
<id>427ab5add9a1002b8e8cefe3a85f4497eb977e73</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix MENU TITLE -&gt; MENU LABEL inheritance</title>
<updated>2008-02-20T02:40:37+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-02-20T02:40:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/syslinux.git/commit/?id=f96bf79f8ee04fe19b68cb026b235ca3baa8421a'/>
<id>f96bf79f8ee04fe19b68cb026b235ca3baa8421a</id>
<content type='text'>
Correctly make it so MENU TITLE can be inherited upward as MENU TITLE
unless one is provided.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Correctly make it so MENU TITLE can be inherited upward as MENU TITLE
unless one is provided.
</pre>
</div>
</content>
</entry>
</feed>
