<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/syslinux.git/com32/modules/Makefile, branch syslinux-3.40-pre5</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>Deal with various distributions breaking gcc in weird ways</title>
<updated>2007-02-07T00:33:39+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2007-02-07T00:33:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=df2e79ce976ff922c46d56183a6a904f9d5b8cf6'/>
<id>df2e79ce976ff922c46d56183a6a904f9d5b8cf6</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 3.2x branch</title>
<updated>2006-09-13T04:08:23+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2006-09-13T04:08:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=46ac402a1aa14849480db22edb22e22a2dd7465b'/>
<id>46ac402a1aa14849480db22edb22e22a2dd7465b</id>
<content type='text'>
Conflicts:

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

	com32/modules/Makefile
</pre>
</div>
</content>
</entry>
<entry>
<title>Introducing a new com32 module to parse pci devices/buses</title>
<updated>2006-09-13T04:06:55+00:00</updated>
<author>
<name>Erwan Velu</name>
<email>erwan@r1.paris</email>
</author>
<published>2006-09-07T18:30:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=c1b0bb65b97cde99e4a7be101fa4033833d17243'/>
<id>c1b0bb65b97cde99e4a7be101fa4033833d17243</id>
<content type='text'>
The pcitest module implements an example of use the pci module
If you like to use the string name just put a pci.ids file in the root directory
(cherry picked from 85bb6facf0100592c89d5c3c5c17b25e7b0006b3 commit)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The pcitest module implements an example of use the pci module
If you like to use the string name just put a pci.ids file in the root directory
(cherry picked from 85bb6facf0100592c89d5c3c5c17b25e7b0006b3 commit)
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge with 3.2x branch</title>
<updated>2006-09-05T22:46:27+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2006-09-05T22:46:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=9b5f55b2369d4cc19ef8038c752716d40ba77961'/>
<id>9b5f55b2369d4cc19ef8038c752716d40ba77961</id>
<content type='text'>
Conflicts:

	com32/modules/Makefile
	com32/modules/menu.c
	com32/modules/menu.h
	com32/modules/readconfig.c
	version
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:

	com32/modules/Makefile
	com32/modules/menu.c
	com32/modules/menu.h
	com32/modules/readconfig.c
	version
</pre>
</div>
</content>
</entry>
<entry>
<title>Adding a new com32 module to handle cpu information</title>
<updated>2006-09-05T20:53:38+00:00</updated>
<author>
<name>Erwan Velu</name>
<email>erwan@seanodes.com</email>
</author>
<published>2006-09-04T20:34:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=1f675cf4298e2cb5dd5bc3be2c3649ac81d4fac6'/>
<id>1f675cf4298e2cb5dd5bc3be2c3649ac81d4fac6</id>
<content type='text'>
 From : Erwan Velu &lt;erwan.velu@free.fr&gt;
This patch a new com32 module to handle cpu information.
A new "cpu" structure can be filled by calling "detect_cpu(&amp;cpu)".

It provides :
- Vendor name as string
- Model as string
- Vendor as integer
- Model as integer
- Family as integer
- Stepping as Integer
- Flags as boolean
- SMP as boolean

Note that SMP is just a manner to know if the bios annonce an MPTABLE.
This code can't detect each processor.

I've been adding a demo program called cpuidtest to show how it works.

if (cpu.flags.lm == true) printf("This system is x86_64 compatible\n");
This example shows how to test if a system is X86_64 compatible.
I hope it's simple enough ;)

This code is mainly taken from the Linux Kernel.
Greetings for all the guys who wrote it.

Testing and feedback are welcome.

Signed-off-by:Erwan Velu &lt;erwan.velu@free.fr&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 From : Erwan Velu &lt;erwan.velu@free.fr&gt;
This patch a new com32 module to handle cpu information.
A new "cpu" structure can be filled by calling "detect_cpu(&amp;cpu)".

It provides :
- Vendor name as string
- Model as string
- Vendor as integer
- Model as integer
- Family as integer
- Stepping as Integer
- Flags as boolean
- SMP as boolean

Note that SMP is just a manner to know if the bios annonce an MPTABLE.
This code can't detect each processor.

I've been adding a demo program called cpuidtest to show how it works.

if (cpu.flags.lm == true) printf("This system is x86_64 compatible\n");
This example shows how to test if a system is X86_64 compatible.
I hope it's simple enough ;)

This code is mainly taken from the Linux Kernel.
Greetings for all the guys who wrote it.

Testing and feedback are welcome.

Signed-off-by:Erwan Velu &lt;erwan.velu@free.fr&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Lots of fixes to make the graphical menu actually work.</title>
<updated>2006-09-01T08:20:28+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2006-09-01T08:20:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=743ac8f1721cef695e1393f8bc76ccdb62445762'/>
<id>743ac8f1721cef695e1393f8bc76ccdb62445762</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Beginnings of a color theme manager; unify vesamenu and ansimenu</title>
<updated>2006-09-01T03:41:01+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2006-09-01T03:41:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=cce34512a098159fc6e55509dd1633baa1c0b60e'/>
<id>cce34512a098159fc6e55509dd1633baa1c0b60e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>More work on actual VESA console and menu.  Shadowing still doesn't work</title>
<updated>2006-08-31T22:48:26+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2006-08-31T22:48:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=6f00093c652fdbf1c9679100cc21906314b2a859'/>
<id>6f00093c652fdbf1c9679100cc21906314b2a859</id>
<content type='text'>
quite right, however.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
quite right, however.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove more CVS-era $Id$ tags.</title>
<updated>2006-08-17T22:32:32+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2006-08-17T22:32:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=d8e0c5eb1d7052aa6b58a31809800dd79e95d179'/>
<id>d8e0c5eb1d7052aa6b58a31809800dd79e95d179</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Adding a com32 module to handle DMI</title>
<updated>2006-08-15T05:25:26+00:00</updated>
<author>
<name>Erwan Velu</name>
<email>erwan@seanodes.com</email>
</author>
<published>2006-08-14T20:10:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=1442feb3e09f6752a58191b4630a76e3051bca60'/>
<id>1442feb3e09f6752a58191b4630a76e3051bca60</id>
<content type='text'>
 From : Erwan Velu &lt;erwan.velu@free.fr&gt;

This patch add a new com32 module named dmi.
It can parse DMI Hanldes number 0,1,2,3,4.
Using a very simple API, you can read the values of the following "Handles"
- BIOS
- CHASSIS
- SYSTEM
- BASE_BOARD
- PROCESSOR

It's possible and easy to extend to many other Handles.

A sample code program called dmitest shows how you can use and display
this structures.

The codes is mainly taken from the Linux Kernel and the smartmontool
projects.
Both are GPL, my code too.

Testing and feedback are welcomed.

Signed-off-by:Erwan Velu &lt;erwan.velu@free.fr&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 From : Erwan Velu &lt;erwan.velu@free.fr&gt;

This patch add a new com32 module named dmi.
It can parse DMI Hanldes number 0,1,2,3,4.
Using a very simple API, you can read the values of the following "Handles"
- BIOS
- CHASSIS
- SYSTEM
- BASE_BOARD
- PROCESSOR

It's possible and easy to extend to many other Handles.

A sample code program called dmitest shows how you can use and display
this structures.

The codes is mainly taken from the Linux Kernel and the smartmontool
projects.
Both are GPL, my code too.

Testing and feedback are welcomed.

Signed-off-by:Erwan Velu &lt;erwan.velu@free.fr&gt;
</pre>
</div>
</content>
</entry>
</feed>
