Update of /cvsroot/devil-linux/build/scripts
In directory sc8-pr-cvs1:/tmp/cvs-serv6311/scripts
Modified Files:
alsa-driver
Log Message:
alsa support, stage 1
Index: alsa-driver
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/alsa-driver,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- alsa-driver 7 Nov 2003 00:15:38 -0000 1.1
+++ alsa-driver 7 Nov 2003 17:21:58 -0000 1.2
@@ -25,8 +25,7 @@
case $1 in
build )
if [ "$CONFIG_ALSA" = "y" ]; then
-# ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var || exit 1
- ./configure --with-isa-pnp=no --with-oss=yes --with-cards=all || exit 1
+ ./configure --with-isa-pnp=yes --with-oss=yes --with-sequencer=yes --with-cards=all --with-kernel=$WORKDIR/linux-2.4.22 --with-moddir=$CDDIR/lib/modules/2.4.22/misc --sysconfdir=$CDDIR/etc || exit 1
make $PMAKE || exit 1
strip_debug
fi
@@ -35,14 +34,7 @@
install )
if [ "$CONFIG_ALSA" = "y" ]; then
rm -rf $WORKDIR/tmp || exit 1
- mkdir -p $WORKDIR/tmp || exit 1
- make install DESTDIR=$WORKDIR/tmp || exit 1
-
- copy_files $WORKDIR/tmp/usr/* $CDDIR/ || exit 1
- copy_files $WORKDIR/tmp/lib/* $CDDIR/ || exit 1
- copy_files $WORKDIR/tmp/etc/* $ETCDIR/ || exit 1
-
- rm -rf $WORKDIR/tmp || exit 1
+ make install || exit 1
echo "HELP_$MYNAME=\"$MYNAME are the needed modules to have sound support\"" >> $SOFTWAREHELP
fi
|