summaryrefslogtreecommitdiff
path: root/com32/include/sys
Commit message (Collapse)AuthorAgeFilesLines
* Fix building on a 64-bit system without a 32-bit system installedsyslinux-3.52-pre10syslinux-3.52H. Peter Anvin2007-09-241-0/+6
| | | | | A bunch of glibc header files were bogusly included. We should not depend on having a 32-bit glibc installed, since we don't use it.
* Improving PCI collected informationsErwan Velu2007-08-161-15/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch - add a new pci_dev_info structure : It contains additional informations about the pci devices like the product/vendor name and the associated linux kernel module - add a get_name_from_pci_ids() function in pci/scan.c This function reads a pci.ids file from the boot device. Then it assign for each pci device, its vendor/product name. You just have to put this file in the root directory of your isolinux/pxelinux (i.e the root directory of your tfptboot server if you are using pxelinux). - add a get_module_name_from_pci_ids() function in pci/scan.c This function reads a modules.pcimap file from the boot device. Then it assign for each pci_device its linux kernel module. You just have to put this file in the root directory of your isolinux/pxelinux (i.e the root directory of your tfptboot server if you are using pxelinux). - Add a call to get_name_from_pci_ids() into the pcitest COM32 module - Add a call to get_module_name_from_pci_ids() into the pcitest COM32 module - Fixing typedef struct { ... } s_pci...; by struct pci... {}; - Improving comments - Fixing the memory allocation to prevent leaks With this patch, pcitest.c32 act like lspci plus a bonus by displaying the linux kernel module assiocated to each pci device. Signed-off-by:Erwan Velu <erwan.velu@free.fr> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* Remove useless attempt at reading pci.idsH. Peter Anvin2007-04-011-2/+0
| | | | | | | We try to read pci.ids over and over to get human-readable strings, and reserve enormous amounts of memory for them. We don't ever actually use them. If we want to have a PCI database we should do that elsewhere, and better.
* Stealth whitespace cleanup (automated)H. Peter Anvin2007-03-143-37/+37
|
* Wrapper infrastructure for "shuffle and boot"H. Peter Anvin2007-03-123-0/+413
| | | | | | | Initial checkin of a wrapper infrastructure for the "shuffle and boot" interface, both real and protected mode. This code automatically will figure out the necessary sequence of moves, taking into account swaps and overlaps as necessary.
* Ethersel must use the pci com32 module instead of builtin pci detection codeErwan Velu2007-03-071-0/+11
| | | | | | | | | | | | | | From : Erwan Velu <erwan.velu@free.fr> This patch - remove the pci detection code from ethersel - add a find_pci_device() function in the PCI com32 module - make ethersel using the pci com32 module instead of builtin pci detection code Testing and feedback are welcome. Signed-off-by:Erwan Velu <erwan.velu@free.fr>
* Merge with 3.2x branchH. Peter Anvin2006-09-121-0/+32
|\ | | | | | | | | | | Conflicts: com32/modules/Makefile
| * Introducing a new com32 module to parse pci devices/busessyslinux-3.2xErwan Velu2006-09-121-0/+32
| | | | | | | | | | | | 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)
* | Include file updatesH. Peter Anvin2006-08-281-0/+6
|/
* Across-the-board stealth whitespace cleanupH. Peter Anvin2006-05-031-1/+1
|
* Beginnings of a file-moving APIhpa2005-09-252-1/+10
|
* Out-of-line __intcall and __farcall; better detection mechanism for CM#2hpa2005-08-091-1/+2
|
* Add PCI_CFG_BIOShpa2005-08-031-0/+1
|
* Support PCI configuration space mechanism #2 if necessary.hpa2005-01-051-6/+14
|
* Fix PCI access functionshpa2005-01-041-6/+6
|
* Support timeout in the menusyslinux-2.20-pre12hpa2004-12-211-2/+2
|
* Make the raw input console non-blocking with a timeout, allows handlinghpa2004-12-201-0/+21
| | | | the [Esc] key.
* Very basic operations now work; need to handle line-orientedhpa2004-11-171-0/+43
| | | | versus character-oriented input
* Very first cut at a klibc-derived C library for com32hpa2004-11-104-0/+159