<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/syslinux.git/com32/gplinclude, branch thread</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>hdt: make get_error behaves like perror</title>
<updated>2009-08-24T13:33:52+00:00</updated>
<author>
<name>Pierre-Alexandre Meyer</name>
<email>pierre@mouraf.org</email>
</author>
<published>2009-08-22T17:34:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=9ffe8b0b4e2ff9b98813521f79c840d983424f82'/>
<id>9ffe8b0b4e2ff9b98813521f79c840d983424f82</id>
<content type='text'>
This simplifies buffer handling.

Misc.: clean some old error code handling.

Signed-off-by: Pierre-Alexandre Meyer &lt;pierre@mouraf.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This simplifies buffer handling.

Misc.: clean some old error code handling.

Signed-off-by: Pierre-Alexandre Meyer &lt;pierre@mouraf.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>gpllib: Introduce typedefs for callbacks</title>
<updated>2009-08-06T04:29:35+00:00</updated>
<author>
<name>Pierre-Alexandre Meyer</name>
<email>pierre@mouraf.org</email>
</author>
<published>2009-08-06T04:03:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=9636a1bbb1c1394fc9fb7cf66d97ffe5f5f43ff3'/>
<id>9636a1bbb1c1394fc9fb7cf66d97ffe5f5f43ff3</id>
<content type='text'>
typedefs are evil but useful for function pointers as it makes them more
readable and maintainable.

This fixes a bug by the way: we had

   void *callback(struct driveinfo *, struct part_entry *, int, int)

where we should have had

   void (*callback)(struct driveinfo *, struct part_entry *, int, int)

Signed-off-by: Pierre-Alexandre Meyer &lt;pierre@mouraf.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
typedefs are evil but useful for function pointers as it makes them more
readable and maintainable.

This fixes a bug by the way: we had

   void *callback(struct driveinfo *, struct part_entry *, int, int)

where we should have had

   void (*callback)(struct driveinfo *, struct part_entry *, int, int)

Signed-off-by: Pierre-Alexandre Meyer &lt;pierre@mouraf.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>hdt: Make the menu and cli use the new disk interfaces</title>
<updated>2009-08-05T22:11:01+00:00</updated>
<author>
<name>Pierre-Alexandre Meyer</name>
<email>pierre@mouraf.org</email>
</author>
<published>2009-08-05T22:11:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=d9347453718a27439b33b6020b996621439cebb7'/>
<id>d9347453718a27439b33b6020b996621439cebb7</id>
<content type='text'>
The disklib interfaces have changed (errno_disk introduced). Update
these changes in hdt (nobody else use them).

Misc: fix get_error declaration.

Signed-off-by: Pierre-Alexandre Meyer &lt;pierre@mouraf.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The disklib interfaces have changed (errno_disk introduced). Update
these changes in hdt (nobody else use them).

Misc: fix get_error declaration.

Signed-off-by: Pierre-Alexandre Meyer &lt;pierre@mouraf.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>gpllib: More errno fixes</title>
<updated>2009-08-05T22:09:47+00:00</updated>
<author>
<name>Pierre-Alexandre Meyer</name>
<email>pierre@mouraf.org</email>
</author>
<published>2009-08-05T22:09:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=2acba746d510b460fffd29ec5538962fec3cebda'/>
<id>2acba746d510b460fffd29ec5538962fec3cebda</id>
<content type='text'>
 * Fix header files due to previous commit
 * Prefix disk errnos with ED to avoid conflicts with classic errno
 * Fix swsusp code to use errno_disk

Signed-off-by: Pierre-Alexandre Meyer &lt;pierre@mouraf.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * Fix header files due to previous commit
 * Prefix disk errnos with ED to avoid conflicts with classic errno
 * Fix swsusp code to use errno_disk

Signed-off-by: Pierre-Alexandre Meyer &lt;pierre@mouraf.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>disklib: Change read/write interface</title>
<updated>2009-08-05T19:44:25+00:00</updated>
<author>
<name>Pierre-Alexandre Meyer</name>
<email>pierre@mouraf.org</email>
</author>
<published>2009-08-05T19:42:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=737102c3c7abe183e50c1740be3b5c5276b1fa17'/>
<id>737102c3c7abe183e50c1740be3b5c5276b1fa17</id>
<content type='text'>
Get rid of the error pointer and use a errno-like error reporting mechanism.
Intent is to make these more like the standard read/write system calls.

Signed-off-by: Pierre-Alexandre Meyer &lt;pierre@mouraf.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Get rid of the error pointer and use a errno-like error reporting mechanism.
Intent is to make these more like the standard read/write system calls.

Signed-off-by: Pierre-Alexandre Meyer &lt;pierre@mouraf.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge commit 'hpa/master' into for-erwan</title>
<updated>2009-08-05T04:01:32+00:00</updated>
<author>
<name>Pierre-Alexandre Meyer</name>
<email>pierre@mouraf.org</email>
</author>
<published>2009-08-05T03:23:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=0b19aba1d072ab3a2d9f528d7f0042dc8bc9e0ca'/>
<id>0b19aba1d072ab3a2d9f528d7f0042dc8bc9e0ca</id>
<content type='text'>
Conflicts:
	com32/cmenu/libmenu/com32io.h
	com32/gplinclude/dmi/dmi.h
	com32/gplinclude/dmi/dmi_base_board.h
	com32/gplinclude/dmi/dmi_memory.h
	com32/gplinclude/dmi/dmi_system.h
	com32/gpllib/dmi/dmi.c
	com32/gpllib/dmi/dmi_memory.c
	com32/include/sys/pci.h
	com32/lib/pci/scan.c
	com32/modules/Makefile

Signed-off-by: Pierre-Alexandre Meyer &lt;pierre@mouraf.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	com32/cmenu/libmenu/com32io.h
	com32/gplinclude/dmi/dmi.h
	com32/gplinclude/dmi/dmi_base_board.h
	com32/gplinclude/dmi/dmi_memory.h
	com32/gplinclude/dmi/dmi_system.h
	com32/gpllib/dmi/dmi.c
	com32/gpllib/dmi/dmi_memory.c
	com32/include/sys/pci.h
	com32/lib/pci/scan.c
	com32/modules/Makefile

Signed-off-by: Pierre-Alexandre Meyer &lt;pierre@mouraf.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Run Nindent on com32/gplinclude/vpd/vpd.h</title>
<updated>2009-05-29T22:10:21+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2009-05-29T22:10:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=bcb4183a1486fb6cb983d52cdace6bac41cb463d'/>
<id>bcb4183a1486fb6cb983d52cdace6bac41cb463d</id>
<content type='text'>
Automatically reformat com32/gplinclude/vpd/vpd.h using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Automatically reformat com32/gplinclude/vpd/vpd.h using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Run Nindent on com32/gplinclude/dmi/dmi_system.h</title>
<updated>2009-05-29T22:10:21+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2009-05-29T22:10:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=944afe01153a9df47ab6d52be9df85ba5ac17b58'/>
<id>944afe01153a9df47ab6d52be9df85ba5ac17b58</id>
<content type='text'>
Automatically reformat com32/gplinclude/dmi/dmi_system.h using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Automatically reformat com32/gplinclude/dmi/dmi_system.h using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Run Nindent on com32/gplinclude/dmi/dmi_processor.h</title>
<updated>2009-05-29T22:10:21+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2009-05-29T22:10:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=62caf40de63dd2376d7fad5de5ead5b9af38aa94'/>
<id>62caf40de63dd2376d7fad5de5ead5b9af38aa94</id>
<content type='text'>
Automatically reformat com32/gplinclude/dmi/dmi_processor.h using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Automatically reformat com32/gplinclude/dmi/dmi_processor.h using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Run Nindent on com32/gplinclude/dmi/dmi_memory.h</title>
<updated>2009-05-29T22:10:21+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2009-05-29T22:10:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=5fcf66024db0a9aa7bcdbba5897f18b296fdf854'/>
<id>5fcf66024db0a9aa7bcdbba5897f18b296fdf854</id>
<content type='text'>
Automatically reformat com32/gplinclude/dmi/dmi_memory.h using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Automatically reformat com32/gplinclude/dmi/dmi_memory.h using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
