add pciutils for debugging

This commit is contained in:
Stephan Raue 2009-04-14 07:12:56 +02:00
parent 29f619f386
commit 9d57c2ff98
9 changed files with 17508 additions and 7 deletions

View File

@ -135,6 +135,9 @@ LCD_MODEL=HD44780-winamp
LCD_WIDTH=16
LCD_HEIGHT=2
DEBUG=no
DEVTOOLS=no
# verbose compilation mode (yes/no)
VERBOSE=yes

View File

@ -27,11 +27,8 @@ LIB_PREFIX=$SYSROOT_PREFIX/usr
TARGET_PREFIX=$ROOT/$TOOLCHAIN/bin/$TARGET_NAME-
if [ "$OPENELEC_VERSION" = devel ]; then
DEBUG=no
DEVTOOLS=yes
DEBUG=no
else
DEVTOOLS=no
DEBUG=no
fi
HOST_NAME_CACHE=$BUILD/configtools/host_name

View File

@ -38,7 +38,6 @@ ac_cv_lib_xvidcore_xvid_global=yes \
--disable-experimental \
--disable-gtk-doc \
--enable-aiffparse \
--enable-app \
--enable-bayer \
--enable-cdxaparse \
--enable-dccp \
@ -46,7 +45,6 @@ ac_cv_lib_xvidcore_xvid_global=yes \
--enable-deinterlace2 \
--enable-dvdspu \
--enable-festival \
--enable-filter \
--enable-flv \
--enable-freeze \
--enable-h264parse \
@ -67,7 +65,6 @@ ac_cv_lib_xvidcore_xvid_global=yes \
--enable-sdp \
--enable-selector \
--enable-speed \
--enable-speexresample \
--enable-subenc \
--enable-stereo \
--enable-tta \

View File

@ -0,0 +1,21 @@
#!/bin/sh
. config/options
$SCRIPTS/build toolchain
PKG_DIR=`find $PACKAGES -type d -name $1`
cd $BUILD/$1*
make OPT="$TARGET_CFLAGS" \
CROSS_COMPILE=${TARGET_PREFIX} \
HOST=$TARGET_ARCH-linux \
IDSDIR="/usr/share" \
ZLIB=no \
DNS=no \
PREFIX=/usr \
./update-pciids.sh
#cp $ROOT/$PKG_DIR/pci.ids .

View File

@ -0,0 +1,7 @@
#!/bin/sh
#
# cache pci devices
#
# runlevels: geexbox, debug, install, configure
lspci > /tmp/pci

View File

@ -0,0 +1,9 @@
#!/bin/sh
. config/options
mkdir -p $INSTALL/usr/bin
cp $BUILD/$1*/lspci $INSTALL/usr/bin
mkdir -p $INSTALL/usr/share
cp $BUILD/$1*/pci.ids $INSTALL/usr/share

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
http://ftp.de.kernel.org/pub/software/utils/pciutils/pciutils-3.1.2.tar.bz2

View File

@ -73,6 +73,7 @@ case "$2" in
# Devtools... (not for Release)
[ "$DEVTOOLS" = yes ] && $SCRIPTS/install gdb
[ "$DEVTOOLS" = yes ] && $SCRIPTS/install mrxvt
[ "$DEVTOOLS" = yes ] && $SCRIPTS/install pciutils
#[ "$EXTRACODECS" = yes ] && $SCRIPTS/install extra-codecs-nonfree $1
#[ "$EXTRAFIRMWARES" = yes ] && $SCRIPTS/install extra-firmwares-nonfree $1