<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/syslinux.git/com32/lib, branch syslinux-3.71</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>Default to \n -&gt; \r\n in ANSI and xserial</title>
<updated>2008-06-24T22:25:14+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-06-24T22:25:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=ce014dced52afc366fcbe08c60b8f725812f1bc2'/>
<id>ce014dced52afc366fcbe08c60b8f725812f1bc2</id>
<content type='text'>
Default to \n -&gt; \r\n conversion in the ANSI and xserial modules,
rather than relying on escape codes to make that behave.  This
effectively means that as far as the serial port is concerned, this
behavior cannot be turned off (with less than having the xserial state
machine interpret this sequence) and the escape code *should not* be
used.

That is fine for our applications, though.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Default to \n -&gt; \r\n conversion in the ANSI and xserial modules,
rather than relying on escape codes to make that behave.  This
effectively means that as far as the serial port is concerned, this
behavior cannot be turned off (with less than having the xserial state
machine interpret this sequence) and the escape code *should not* be
used.

That is fine for our applications, though.
</pre>
</div>
</content>
</entry>
<entry>
<title>loadfile: make sure we don't trash errno</title>
<updated>2008-06-16T00:03:18+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-06-16T00:03:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=99d175aa34800b281c65210ce436cf0a423906fc'/>
<id>99d175aa34800b281c65210ce436cf0a423906fc</id>
<content type='text'>
Make sure we don't trash a useful value in errno.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make sure we don't trash a useful value in errno.
</pre>
</div>
</content>
</entry>
<entry>
<title>pci: fix off-by-one error and introduce MAX_PCI_FUNC</title>
<updated>2008-06-13T16:19:57+00:00</updated>
<author>
<name>Sebastian Herbszt</name>
<email>herbszt@gmx.de</email>
</author>
<published>2008-06-11T20:53:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=eab6f0763744c964eded45b48ec41cb6c1f65cdb'/>
<id>eab6f0763744c964eded45b48ec41cb6c1f65cdb</id>
<content type='text'>
In include/sys/pci.h we have

#define MAX_PCI_BUSES 255

and

struct pci_bus_list {
        struct pci_bus pci_bus[MAX_PCI_BUSES];
        uint8_t count;
};

And in lib/pci/scan.c

for (bus = 0; bus &lt;= MAX_PCI_BUSES; bus++) {

    pci_bus_list-&gt;pci_bus[bus].pci_device_count = 0;

Fix possible overflows and introduce MAX_PCI_FUNC.

- Sebastian
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In include/sys/pci.h we have

#define MAX_PCI_BUSES 255

and

struct pci_bus_list {
        struct pci_bus pci_bus[MAX_PCI_BUSES];
        uint8_t count;
};

And in lib/pci/scan.c

for (bus = 0; bus &lt;= MAX_PCI_BUSES; bus++) {

    pci_bus_list-&gt;pci_bus[bus].pci_device_count = 0;

Fix possible overflows and introduce MAX_PCI_FUNC.

- Sebastian
</pre>
</div>
</content>
</entry>
<entry>
<title>Aligning memcpy/memmove/mempcpy/memset for libcom32</title>
<updated>2008-06-06T19:18:18+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-06-06T19:18:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=6ecbbad5bfee20dddccdbe0629125c7b6ca41211'/>
<id>6ecbbad5bfee20dddccdbe0629125c7b6ca41211</id>
<content type='text'>
Aligning versions of memcpy/memmove/mempcpy/memset for libcom32.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Aligning versions of memcpy/memmove/mempcpy/memset for libcom32.
</pre>
</div>
</content>
</entry>
<entry>
<title>Centralize configurables; better "make install" etc</title>
<updated>2008-05-30T00:53:42+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-05-30T00:53:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=0596155be3f9cc9d3eb385497ee79935c69ec042'/>
<id>0596155be3f9cc9d3eb385497ee79935c69ec042</id>
<content type='text'>
Begin the process of centralizing configurables.

Improve "make install" and "make netinstall"; add "make
extbootinstall".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Begin the process of centralizing configurables.

Improve "make install" and "make netinstall"; add "make
extbootinstall".
</pre>
</div>
</content>
</entry>
<entry>
<title>Move files out of root into core, dos, and utils</title>
<updated>2008-05-29T22:11:38+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-05-29T22:11:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=b536209dfb7bd50c37061735fe10d2c19a97d26d'/>
<id>b536209dfb7bd50c37061735fe10d2c19a97d26d</id>
<content type='text'>
Move source files out of the root directory; the root is a mess and
has become virtually unmaintainable.  The Syslinux core now lives in
core/; the Linux and generic utilities has moved into utils/, and
copybs.com has moved into dos/; it had to go somewhere, and it seemed
as good a place as any.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move source files out of the root directory; the root is a mess and
has become virtually unmaintainable.  The Syslinux core now lives in
core/; the Linux and generic utilities has moved into utils/, and
copybs.com has moved into dos/; it had to go somewhere, and it seemed
as good a place as any.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge commit 'origin/master' into gpxe-added</title>
<updated>2008-05-28T16:23:57+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-05-28T16:23:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=80001b1d2acc06b33bb6de05474ce54682dacfb6'/>
<id>80001b1d2acc06b33bb6de05474ce54682dacfb6</id>
<content type='text'>
Conflicts:

	NEWS
	version
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:

	NEWS
	version
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed the various Makefiles so that SYSLINUX compiles on platforms with GCC -fstack-protector flag enabled by default.</title>
<updated>2008-05-12T18:47:23+00:00</updated>
<author>
<name>Stefan Bucur</name>
<email>stefanb@zytor.com</email>
</author>
<published>2008-05-12T18:47:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=4561fc3586957f5d745bc9eb3baf8d859897da17'/>
<id>4561fc3586957f5d745bc9eb3baf8d859897da17</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>syslinux 3.63: Use $(CC) for examining compiler options</title>
<updated>2008-04-18T02:09:17+00:00</updated>
<author>
<name>Maciej W. Rozycki</name>
<email>macro@linux-mips.org</email>
</author>
<published>2008-04-17T22:46:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=16983e80939790e598656c1d91c24e7069feec34'/>
<id>16983e80939790e598656c1d91c24e7069feec34</id>
<content type='text'>
 Following changes to other Makefiles use $(CC) for examining compiler
options here as well.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 Following changes to other Makefiles use $(CC) for examining compiler
options here as well.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge commit 'syslinux-3.63' into gpxe-added</title>
<updated>2008-04-10T17:41:32+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2008-04-10T17:41:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=6699cb66d4456f2d61b3ac3f8d14ce81df2437eb'/>
<id>6699cb66d4456f2d61b3ac3f8d14ce81df2437eb</id>
<content type='text'>
Conflicts:

	NEWS
	com32/modules/Makefile
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:

	NEWS
	com32/modules/Makefile
</pre>
</div>
</content>
</entry>
</feed>
