summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Crozat <fcrozat@mandriva.com>2010-01-08 17:00:19 +0000
committerFrederic Crozat <fcrozat@mandriva.com>2010-01-08 17:00:19 +0000
commita2abb9ee4c7c5db95903a0bd980f04f76d1232c5 (patch)
tree64efe00aaf43eb39b365be432d9aa407a30e8a5e
parentc13071d9d0351a056807a9ab488d8e4d89d08a79 (diff)
downloadldetect-lst-a2abb9ee4c7c5db95903a0bd980f04f76d1232c5.tar
ldetect-lst-a2abb9ee4c7c5db95903a0bd980f04f76d1232c5.tar.gz
ldetect-lst-a2abb9ee4c7c5db95903a0bd980f04f76d1232c5.tar.bz2
ldetect-lst-a2abb9ee4c7c5db95903a0bd980f04f76d1232c5.tar.xz
ldetect-lst-a2abb9ee4c7c5db95903a0bd980f04f76d1232c5.zip
install .ids files for usb, pci and oui
-rw-r--r--lst/Makefile22
1 files changed, 17 insertions, 5 deletions
diff --git a/lst/Makefile b/lst/Makefile
index 3d696134..98a9e944 100644
--- a/lst/Makefile
+++ b/lst/Makefile
@@ -14,10 +14,12 @@ TMP_TABLES = $(TABLES:%=%.tmp)
build: preferred-modules.alias
+update-ids: new-usb-ids new-pci-ids new-oui-txt
+
clean:
rm -f *~ *.tmp ScannerDB.gz preferred-modules.alias fallback-modules.alias
-check:
+check:
@../convert/merge2pcitable.pl pcitable pcitable.x86_64 pcitable.x86_64 > .pcitable
@diff -u pcitable.x86_64 .pcitable
@../convert/merge2pcitable.pl pcitable pcitable pcitable > .pcitable
@@ -44,14 +46,21 @@ $(TMP_TABLES2): %.tmp: %
$(TABLES3):
gzip -vc9 ScannerDB > ScannerDB.gz
+new-usb-ids:
+ @curl -O http://www.linux-usb.org/usb.ids
+
+new-pci-ids:
+ @curl -O http://pciids.sourceforge.net/pci.ids
+
+new-oui-txt:
+ @curl -O http://standards.ieee.org/regauth/oui/oui.txt
+
install: $(TMP_TABLES) $(TABLES3)
for i in $(TABLES); do \
mkdir -p $(dir)/$$i.d ; \
(echo "# This file was created:" `date '+%Y-%m-%d %H:%M:%S (%z)'` ; \
- echo "# !! The latest version is available via CVS at" ; \
- echo "# export CVS_RSH=ssh" ; \
- echo "# export CVSROOT=:ext:anoncvs@cvs.mandriva.com:/cooker" ; \
- echo "# cvs checkout soft/$(project) (password \`\`cvs'')" ; \
+ echo "# !! The latest version is available via SVN at" ; \
+ echo "# http://svn.mandriva.com/svn/soft/ldetect-lst/" ; \
cat $$i.tmp \
) > $(dir)/$$i.d/90default.lst; done
@@ -63,3 +72,6 @@ install: $(TMP_TABLES) $(TABLES3)
install -m 644 fallback-modules.alias $(dir)/fallback-modules.alias
install -D -m 644 preferred-modules.alias $(slibdir)/module-init-tools/ldetect-lst-modules.alias
+ install -D -m 644 oui.txt usb.ids $(prefix)/share
+ mkdir -p $(prefix)/share/misc
+ install -m 644 pci.ids $(prefix)/share/misc/pci.ids