12 echo_n "Configuring libpci for your system..."
13 idsdir=${1:-/usr/share}
17 if [ "$sys" = "AIX" -a -x /usr/bin/oslevel -a -x /usr/sbin/lsattr ]
19 rel=`/usr/bin/oslevel`
20 proc=`/usr/sbin/lsdev -C -c processor -S available -F name | head -1`
21 cpu=`/usr/sbin/lsattr -F value -l $proc -a type | sed 's/_.*//'`
23 cpu=`uname -m | sed 's/^i.86$/i386/;s/^sun4u$/sparc64/;s/^i86pc$/i386/'`
25 if [ "$sys" = "GNU/kFreeBSD" ]
30 host=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)$/\1--\2/' | tr 'A-Z' 'a-z'`
31 cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
32 sys=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
37 echo >$c "#define PCI_ARCH_`echo $cpu | tr 'a-z' 'A-Z'`"
38 echo >>$c "#define PCI_OS_`echo $sys | tr 'a-z' 'A-Z'`"
40 echo_n "Looking for access methods..."
45 2.[1-9]*|[3-9]*) echo_n " sysfs proc"
46 echo >>$c '#define PCI_HAVE_PM_LINUX_SYSFS'
47 echo >>$c '#define PCI_HAVE_PM_LINUX_PROC'
48 echo >>$c '#define PCI_HAVE_LINUX_BYTEORDER_H'
49 echo >>$c '#define PCI_PATH_PROC_BUS_PCI "/proc/bus/pci"'
50 echo >>$c '#define PCI_PATH_SYS_BUS_PCI "/sys/bus/pci"'
55 i386) echo_n " i386-ports"
56 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
60 echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
64 i386) echo_n " i386-ports"
65 echo >>$c "#define PCI_HAVE_PM_INTEL_CONF"
69 echo " The PCI library is does not support Solaris for this architecture: $cpu"
77 echo >>$c '#define PCI_HAVE_PM_FBSD_DEVICE'
78 echo >>$c '#define PCI_PATH_FBSD_DEVICE "/dev/pci"'
83 echo >>$c '#define PCI_HAVE_PM_OBSD_DEVICE'
84 echo >>$c '#define PCI_PATH_OBSD_DEVICE "/dev/pci"'
89 echo >>$c '#define PCI_HAVE_PM_AIX_DEVICE'
94 echo >>$c '#define PCI_HAVE_PM_NBSD_LIBPCI'
95 echo >>$c '#define PCI_PATH_NBSD_DEVICE "/dev/pci0"'
100 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
104 echo " Unfortunately, your OS is not supported by the PCI Library"
109 echo >>$c '#define PCI_HAVE_PM_DUMP'
111 if [ -z "$ok" ] ; then
112 echo "WARNING: No real configuration access method is available."
114 echo >>$c "#define PCI_PATH_IDS \"$idsdir/pci.ids\""
115 echo >>$c "#define PCILIB_VERSION \"$version\""
116 sed '/^#define [^ ]*$/!d;s/^#define \(.*\)/\1=1/' <$c >config.mk