1*433d6423SLionel Sambuc#!/bin/sh 2*433d6423SLionel Sambuc 3*433d6423SLionel Sambucif [ ! -f /proc/pci ]; then 4*433d6423SLionel Sambuc echo "PCI list not found (is /proc mounted?)" >&2 5*433d6423SLionel Sambuc exit 1 6*433d6423SLionel Sambucfi 7*433d6423SLionel Sambuc 8*433d6423SLionel Sambucexec cut -d' ' -f3- /proc/pci 9