Subversion Repositories HelenOS-historic

Compare Revisions

No changes between revisions

Ignore whitespace Rev 1300 → Rev 1301

/uspace/trunk/pci/update-ids
0,0 → 1,16
#! /bin/bash
 
wget http://pciids.sourceforge.net/v2.2/pci.ids
 
cat >pci_ids.h <<EOF
/* DO NOT EDIT, THIS FILE IS AUTOMATICALLY GENERATED */
char *pci_ids[] = {
EOF
 
cat pci.ids | grep -v '^#.*' | grep -v '^$' | tr \" \' | sed -n 's/\(.*\)/"\1",/p' >>pci_ids.h
 
cat >>pci_ids.h <<EOF
""
};
EOF
 
Property changes:
Added: svn:executable
+*
\ No newline at end of property