search for: pci_ids_file

Displaying 2 results from an estimated 2 matches for "pci_ids_file".

2009 Oct 03
3
PATCH: Build floppy image which contains HDT
...09-10-03 23:06:49.356614719 +0200 @@ -27,6 +27,11 @@ OBJS = $(patsubst %.c,%.o,$(wildcard *.c)) +KERNEL_VERSION ?= $(shell uname -r) +MODULES_ALIAS_FILE ?= /lib/modules/$(KERNEL_VERSION)/modules.alias +MODULES_PCIMAP_FILE ?= /lib/modules/$(KERNEL_VERSION)/modules.pcimap +PCI_IDS_FILE ?= $(PWD)/floppy/pci.ids + all: $(MODULES) $(TESTFILES) hdt.elf : $(OBJS) $(LIBS) $(C_LIBS) @@ -39,9 +44,17 @@ rm -f *.lnx spotless: clean - rm -f *.lss *.c32 *.com + rm -f *.lss *.c32 *.com hdt.img rm -f *~ \#* install: -include .*.d + +hdt.img: hdt.c32 flop...
2009 Oct 04
1
Build a bootable floppy image which contains HDT
...tem : - /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, please download it from http://pciids.sourceforge.net/ and put it into the floppy/ directory. Greetings, - Gert Hulselmans