alsa-driver: first try at making things actually work.
authorRene Wagner <rw@handhelds.org>
Fri, 19 Aug 2005 23:25:33 +0000 (23:25 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Fri, 19 Aug 2005 23:25:33 +0000 (23:25 +0000)
    - remove commented out code
    - inherit autotools and module classes
    - use KERNEL_VERSION as defined by module.bbclass
    - FILES is defined correctly by module.bbclass as well
    - make do_configure() use oe_runconf (didn't work at all before this change)
    - Pigi removed the h5400 patch. need to investigate whether this was by intention

packages/alsa/alsa-driver_0.9.6-hh4c.bb

index b045af1..a909c02 100644 (file)
@@ -1,34 +1,25 @@
 DESCRIPTION = "Alsa Drivers"
 MAINTAINER = "Pigi"
-SECTION = "console/utils"
+SECTION = "base"
 LICENSE = "GPL"
-#DEPENDS = "alsa-lib"
-PR = "r1"
-
-
+PR = "r2"
 
 SRC_URI = "ftp://ftp.handhelds.org/packages/alsa-driver/alsa-driver-${PV}.tar.gz \
        file://sound.p.patch;patch=1 \
        file://sa11xx.patch;patch=1 \
-       file://adriver.h.patch;patch=1 "
+       file://adriver.h.patch;patch=1"
 
-#inherit autotools
-#inherit module
+inherit autotools module
 
-#EXTRA_OECONF = "  --with-isapnp=no "
-EXTRA_OECONF=" --with-sequencer=no --with-isapnp=no --with-oss=yes  --with-cards=${cards} --with-kernel=${STAGING_KERNEL_DIR} --with-kernel-version=${KERNEL_VERSION} --host=arm-linux"
-#EXTRA_OECONF = " /ext/ambient/tmp/work/handhelds-sa-2.4.19-rmk6-pxa1-hh37.4-r5/kernel/ "
+EXTRA_OECONF=" --with-sequencer=no \
+       --with-isapnp=no \
+       --with-oss=yes \
+       --with-kernel=${STAGING_KERNEL_DIR} \
+       --with-kernel-version=${KERNEL_VERSION}"
 
 
 do_configure() {
 
-VERS=`grep "^VERSION =" ${STAGING_KERNEL_DIR}/Makefile | awk '{print $3}'`
-PATLEV=`grep "^PATCHLEVEL =" ${STAGING_KERNEL_DIR}/Makefile | awk '{print $3}'`
-SBLEV=`grep "^SUBLEVEL =" ${STAGING_KERNEL_DIR}/Makefile | awk '{print $3}'`
-EXVER=`grep "^EXTRAVERSION =" ${STAGING_KERNEL_DIR}/Makefile | awk '{print $3}'`
-
-KERNEL_VERSION=$VERS.$PATLEV.$SBLEV$EXVER
-
 cards=
 if egrep "CONFIG_SA1100_H3[168]00=y" "${STAGING_KERNEL_DIR}/.config" ; then
   cards="$cards,sa11xx-uda1341"
@@ -40,13 +31,10 @@ if grep "CONFIG_ARCH_H3900=y" "${STAGING_KERNEL_DIR}/.config" ; then
 fi
 cards="$cards,bluez-sco,pdaudiocf"
 
-   configure ${EXTRA_OECONF}
-   #./config.ipaq ${STAGING_KERNEL_DIR}
-
+   oe_runconf --with-cards=${cards}
 }
 
 
-
 do_install() {
 
 if egrep "CONFIG_SA1100_H3[168]00=y" "${STAGING_KERNEL_DIR}/.config" ; then
@@ -65,13 +53,10 @@ extra_modules="snd-gus-synth.o snd-emu8000-synth.o snd-emux-synth.o \
         do rm -f ${D}/lib/modules/*/misc/$i; 
       done
 
-      if [ -d ${D}/${sysconfdir}/modutils/ ] ; then 
-         rm -r ${D}/${sysconfdir}/modutils/ ;
+      if [ -d ${D}${sysconfdir}/modutils/ ] ; then 
+         rm -r ${D}${sysconfdir}/modutils/ ;
       fi
-      mkdir ${D}/${sysconfdir}/modutils/
-      cp familiar/alsa-modules-${familiar_arch} ${D}/${sysconfdir}/modutils/
+      mkdir -p ${D}${sysconfdir}/modutils/
+      cp familiar/alsa-modules-${familiar_arch} ${D}${sysconfdir}/modutils/
 }
 
-#FILES_alsa-driver = "/lib/modules/${KERNEL_VERSION}/misc/snd* /${sysconfdir}/init.d/ /${sysconfdir}"
-FILES_${PN} = "/lib/modules/*/misc/snd* ${sysconfdir}/modutils/* "
-