search for: pcimap

Displaying 20 results from an estimated 43 matches for "pcimap".

Did you mean: pci_map
2013 May 25
2
Missing 'modules.pcimap' file for HDT
Hi, So the 'modules.pcimap' file, needed by Hardware Detection Tool to display kernel modules, is now missing. pciutils/kmod deprecated usage of this file adn depmod lost its -m option. So here are may questions: 1- How to generate a "modules.pcimap" or an equivalent file nowadays? 2- Is it still needed by...
2009 Apr 18
1
modules.pcimap
I have seen it's been planned to change the default file name to be shorted than module.pcimap. One way to solve the longer than 8.3 name issue should be to recommend using mkisofs -J -r But is not module.pcimap going to disappear? Should HDT not parse module.alias instead? An option has been added on module-init-tools to remove generation of all module.*map files. Default behavior is stil...
2007 Aug 13
1
A hardware tool for Syslinux
...otherboard, system, cpu,..). About the PCI devices, I'm using the "pci.ids" file from the pciutils package to display the vendor and product name. Then I thought that displaying the Linux kernel modules associated to the PCI devices could be usefull. I'm using the "modules.pcimap" file from the Linux kernel to display them. If some of you wants to try it : http://konilope.linuxeries.org/tmp/hardware.c32 Then add both "pci.ids" and "modules.pcimap" in the root directory of your tftp server. I really like having some reports and ideas. Erwan,
2009 Oct 04
1
Build a bootable floppy image which contains HDT
...---------- To build a bootable HDT floppy image, you can do a "make hdt.img" call. This will requires the mtools (http://mtools.linux.lu) to be installed. The script will try to pick several files from your system : - /lib/modules/`uname -r`/modules.alias - /lib/modules/`uname -r`/modules.pcimap - /usr/share/pci.ids or /usr/share/hwdata/pci.ids This paths can be overrided with the following command line: make MODULES_ALIAS_FILE=$(PWD)/floppy/modules.alias MODULES_PCIMAP_FILE=$(PWD)/floppy/modules.pcimap PCI_IDS_FILE=$(PWD)/floppy/pci.ids hdt.img If your system doesn't have pci.ids, p...
2009 May 05
7
HDT 0.3.3 is out
HDT 0.3.3 has just been released. This release aims at solving some CLI bugs and adds a some new memory mapping detection. I'd like to thanks Dag Wieers for reporting many CLI bugs & pierre for his work on the memory mapping. Here come the changelog: - A new memory mode Memory items can be reached via the new "memory>" mode. - Memory mapping display Pierre did integrate
2009 May 05
7
HDT 0.3.3 is out
HDT 0.3.3 has just been released. This release aims at solving some CLI bugs and adds a some new memory mapping detection. I'd like to thanks Dag Wieers for reporting many CLI bugs & pierre for his work on the memory mapping. Here come the changelog: - A new memory mode Memory items can be reached via the new "memory>" mode. - Memory mapping display Pierre did integrate
2008 Aug 17
1
[PATCH] pci: rename get_module_name_from_pci_ids
Rename get_module_name_from_pci_ids to get_module_name_from_pcimap since the module names are read from the modules.pcimap and not pci.ids file. - Sebastian Index: syslinux-3.71-12-ga19312b/com32/include/sys/pci.h =================================================================== --- syslinux-3.71-12-ga19312b.orig/com32/include/sys/pci.h 2008-08-16 19:39:41.000...
2009 Jul 19
0
[PATCH] pcitest: fix wrong statements about file locations
...in the same directory as pcitest.c32.\n"); + printf("PCI: Unable to open pci.ids file in current directory.\n"); printf("PCI: PCI class names can't be computed.\n"); } @@ -147,8 +145,7 @@ int main(int argc, char *argv[]) return_code = get_module_name_from_pcimap(pci_domain, "modules.pcimap"); if (return_code == -ENOMODULESPCIMAP) { printf("PCI: ERROR !\n"); - printf - ("PCI: Unable to open modules.pcimap in the same directory as pcitest.c32.\n"); + printf("PCI: Unable to open modules.pcimap file in current dire...
2009 Sep 19
0
[RESEND][PATCH] pcitest: fix wrong statements about file locations
...in the same directory as pcitest.c32.\n"); + printf("PCI: Unable to open pci.ids file in current directory.\n"); printf("PCI: PCI class names can't be computed.\n"); } @@ -147,8 +145,7 @@ int main(int argc, char *argv[]) return_code = get_module_name_from_pcimap(pci_domain, "modules.pcimap"); if (return_code == -ENOMODULESPCIMAP) { printf("PCI: ERROR !\n"); - printf - ("PCI: Unable to open modules.pcimap in the same directory as pcitest.c32.\n"); + printf("PCI: Unable to open modules.pcimap file in current dire...
2009 Nov 18
1
[RESEND][PATCH] pcitest: fix wrong statements about file locations
...in the same directory as pcitest.c32.\n"); + printf("PCI: Unable to open pci.ids file in current directory.\n"); printf("PCI: PCI class names can't be computed.\n"); } @@ -147,8 +145,7 @@ int main(int argc, char *argv[]) return_code = get_module_name_from_pcimap(pci_domain, "modules.pcimap"); if (return_code == -ENOMODULESPCIMAP) { printf("PCI: ERROR !\n"); - printf - ("PCI: Unable to open modules.pcimap in the same directory as pcitest.c32.\n"); + printf("PCI: Unable to open modules.pcimap file in current dire...
2009 Apr 23
0
HDT 0.3.1
...erence in screen management Many of you reported unexpected screen cleaning or "press any key to continue" message. This release will improve this screen management. Everything will behave more "normally" now. Please tell us if you found more unexplained behavior. 3?) Modules.pcimap usage with isolinux A common problem with earlier version of hdt were about adding a modules.pcimap on an iso which implements hdt. In such case, due to the "famous" file 8.3 format, hdt wasn't able to load modules.pcimap. A workaround was to override the filename using a "mod...
2009 Nov 24
1
grub 0.97 integration?
Could you please include a way to use HDT with grub 0.97 on this page: http://www.hdt-project.org/wiki/howtostarthdt This is the best way I have been able to come up: title Hardware Detection Tool 0.3.5 (mojito) root (cd) kernel /vimages/memdisk modules=/vimages/c32/modules.pcimap pciids=/vimages/c32/pci.ids initrd /vimages/bootdisk/hdt-0.3.5.img it is working as it should I guess, even if I'm not quite sure if modules.pcimap and pci.ids are being take into consideration? Regards, Nicolas Heinen.
2009 Oct 03
3
PATCH: Build floppy image which contains HDT
...- hdt.cfg ==> avaible as syslinux.cfg inside the floppy image - mtools.conf ==> Specifies hdt.img as floppy drive for the mtools programs - pci.ids (not included, can be downloaded from http://pciids.sourceforge.net) hdt.c32 doesn't necessarily need the files modules.alias, modules.pcimap and pci.ids, but in this patch those files are required for building hdt.img. I did this because else hdt.img didn't build again when you update one of those 3 files, unless you run: $ cd ./com32/hdt $ make spotless $ make hdt.img I don't know which way is preferred. - Gert Hulsel...
2016 Oct 24
1
SElinux suggestions needed: migrating backup service
...map","security.selinux") failed: Permission denied (13) rsync: rsync_xal_clear: lremovexattr("lib/modules/2.6.18-412.el5/modules.ofmap","security.selinux") failed: Permission denied (13) rsync: rsync_xal_clear: lremovexattr("lib/modules/2.6.18-412.el5/modules.pcimap","security.selinux") failed: Permission denied (13) <snip> The thing is, that files from the source system that doesn't have a label get a new one on the destination system. Here is some kind of inheritance in place. client# ls -laZ /lib/modules/2.6.18-412.el5/modules....
2009 May 02
4
HDT 0.3.2 is out
...d list all available disks disk> show disk 0x80 Display the maximum information of disk 0x80 This output includes disk' partitions. 0.3.2 is also featuring the modules.alias compatibility. This item was requested by users, this is now implemented. By default, hdt tries to open both modules.pcimap & modules.alias to find the associated kernel modules. To override the default values, users can use the modules_pcimap=<filename> and modules_alias=<filename> boot options. Some minor visual improvements/bug fixes were also done regarding the VPD, PCI & memory display. Note t...
2009 May 02
4
HDT 0.3.2 is out
...d list all available disks disk> show disk 0x80 Display the maximum information of disk 0x80 This output includes disk' partitions. 0.3.2 is also featuring the modules.alias compatibility. This item was requested by users, this is now implemented. By default, hdt tries to open both modules.pcimap & modules.alias to find the associated kernel modules. To override the default values, users can use the modules_pcimap=<filename> and modules_alias=<filename> boot options. Some minor visual improvements/bug fixes were also done regarding the VPD, PCI & memory display. Note t...
2016 Oct 24
2
SElinux suggestions needed: migrating backup service
Hi folks, normally I have not so much to do with SElinux but I expected to get in touch sooner or later :-) I migrated a backup-system from El5 to EL6 and the rsync backup process is complaining about selinux attr's now. client <-> server (fetches via rsync -aHAX) client# sestatus SELinux status: disabled server# sestatus SELinux status: enabled
2005 Sep 07
1
mkinitrd
.../sda3 (mounted on / as reiserfs) Module list: ata_piix mptbase mptscsih qla2300 reiserfs Kernel image: /boot/vmlinuz-2.6.11.12-xen0 Initrd image: /boot/initrd-2.6.11.12-xen0 Shared libs: lib/ld-2.3.4.so lib/libblkid.so.1.0 lib/libc.so.6 lib/libselinux .so.1 lib/libuuid.so.1.2 No modules.pcimap file found Cannot determine dependencies of module ata_piix. Is modules.dep up to date? Cannot determine dependencies of module mptbase. Is modules.dep up to date? Cannot determine dependencies of module mptscsih. Is modules.dep up to date? Cannot determine dependencies of module qla2300. Is module...
2009 Apr 19
1
The hardware detection tool for Syslinux
...erwan/hdt.git;a=commit;h=5f036aa1ec3557f444fb8c49f782d31dd53979e7 http://git.zytor.com/?p=users/erwan/hdt.git;a=commit;h=577f705569c24a8fa6e18ba3afcbedaf7db838fb > * On this particular system the Broadcom NICs have module: Unknown even > though it loads the bnx2 driver fine so the modules.pcimap should > be ok Could you please report the lspci -n of that board ? I can try reproducing it here to understand that bug. > * Using show on the CLI, it scrolls beyond the 25 lines. I see an empty > line below "Press any key to continue" so I think you should only > co...
2007 Aug 09
1
[PATCH 1/1]: Improving PCI collected informations
...h 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() int...