diff options
Diffstat (limited to 'packages/alsa')
34 files changed, 0 insertions, 8326 deletions
diff --git a/packages/alsa/.mtn2git_empty b/packages/alsa/.mtn2git_empty deleted file mode 100644 index e69de29bb2..0000000000 --- a/packages/alsa/.mtn2git_empty +++ /dev/null diff --git a/packages/alsa/alsa-driver/.mtn2git_empty b/packages/alsa/alsa-driver/.mtn2git_empty deleted file mode 100644 index e69de29bb2..0000000000 --- a/packages/alsa/alsa-driver/.mtn2git_empty +++ /dev/null diff --git a/packages/alsa/alsa-driver/adriver.h.patch b/packages/alsa/alsa-driver/adriver.h.patch deleted file mode 100644 index cd648838c0..0000000000 --- a/packages/alsa/alsa-driver/adriver.h.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- ./include/adriver.h.orig 2003-09-22 22:04:21.000000000 +0200 -+++ ./include/adriver.h 2005-06-26 10:33:15.000000000 +0200 -@@ -328,8 +328,18 @@ - #endif /* SND_NEED_USB_WRAPPER && CONFIG_USB */ - - /* workqueue-alike; 2.5.45 */ --#include <linux/workqueue.h> -+#include <linux/workqueue.h> - #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 5, 45) && !defined(__WORK_INITIALIZER) -+#ifdef work_struct -+#undef work_struct -+#endif -+#ifdef INIT_WORK -+#undef INIT_WORK -+#endif -+#ifdef schedule_work -+#undef schedule_work -+#endif -+ - struct work_struct { - void (*func)(void *); - void *data; - diff --git a/packages/alsa/alsa-driver/h5400.patch b/packages/alsa/alsa-driver/h5400.patch deleted file mode 100644 index e156708783..0000000000 --- a/packages/alsa/alsa-driver/h5400.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- ./alsa-kernel/arm/h5400-ak4535.c.orig 2005-06-26 22:12:57.000000000 +0200 -+++ ./alsa-kernel/arm/h5400-ak4535.c 2005-06-26 22:13:08.000000000 +0200 -@@ -36,7 +36,7 @@ - #include <asm/arch-sa1100/h3600_hal.h> - #include <asm/arch-sa1100/h3600_asic.h> - #include <asm/arch-pxa/h5400-asic.h> --#include <asm/arch-pxa/pxa-i2s.h> -+#include <drivers/sound/pxa-i2s.h> - - #include <sound/core.h> - #include <sound/pcm.h> - diff --git a/packages/alsa/alsa-driver/sa11xx.patch b/packages/alsa/alsa-driver/sa11xx.patch deleted file mode 100644 index 34509b13b0..0000000000 --- a/packages/alsa/alsa-driver/sa11xx.patch +++ /dev/null @@ -1,38 +0,0 @@ ---- ./alsa-kernel/arm/sa11xx-uda1341.c 2005-06-27 12:59:53.000000000 +0200 -+++ ./alsa-kernel/arm/sa11xx-uda1341.c.orig 2005-06-27 12:59:29.000000000 +0200 -@@ -366,7 +366,7 @@ - DEBUG("\t request id <%s>\n", s->id); - DEBUG("\t request dma_dev = 0x%x \n", s->dma_dev); - if((ret = sa1100_request_dma((s)->dma_dev, (s)->id, callback, s, &((s)->dma_regs)))) -- printk(__FUNCTION__ ": sa1100_request_dma returned %d\n",ret); -+ printk("%s: sa1100_request_dma returned %d\n",__FUNCTION__,ret); - - - -@@ -978,7 +978,7 @@ - switch (req) { - case PM_SUSPEND: /* enter D1-D3 */ - if (card->power_state == SNDRV_CTL_POWER_D3hot){ -- printk(__FUNCTION__ ": exiting eraly from suspend\n"); -+ printk("%s: exiting eraly from suspend\n",__FUNCTION__); - return 0; - } - snd_power_lock(card); -@@ -1002,7 +1002,7 @@ - case PM_RESUME: /* enter D0 */ - - if (card->power_state == SNDRV_CTL_POWER_D0){ -- printk(__FUNCTION__ ": exiting eraly from resume\n"); -+ printk("%s: exiting eraly from resume\n",__FUNCTION__); - return 0; - } - snd_power_lock(card); -@@ -1020,7 +1020,7 @@ - - break; - } -- printk(KERN_DEBUG __FUNCTION__": exiting...\n"); -+ printk(KERN_DEBUG "%s: exiting...\n",__FUNCTION__); - return 0; - - } diff --git a/packages/alsa/alsa-driver/sound.p.patch b/packages/alsa/alsa-driver/sound.p.patch deleted file mode 100644 index 38b073c8bd..0000000000 --- a/packages/alsa/alsa-driver/sound.p.patch +++ /dev/null @@ -1,59 +0,0 @@ ---- ./acore/sound.patch.orig 2003-07-03 16:05:15.000000000 +0200 -+++ ./acore/sound.patch 2005-06-26 09:45:05.000000000 +0200 -@@ -1,6 +1,26 @@ ----- sound.c 2003-05-30 15:29:14.000000000 +0200 --+++ sound.c.old 2003-05-30 15:30:11.000000000 +0200 --@@ -154,7 +154,9 @@ -+--- sound.c.orig 2005-06-25 23:33:07.000000000 +0200 -++++ sound.c 2005-06-25 23:33:07.000000000 +0200 -+@@ -77,6 +77,7 @@ -+ void snd_request_card(int card) -+ { -+ int locked; -++ char *str; -+ -+ read_lock(&snd_card_rwlock); -+ locked = snd_cards_lock & (1 << card); -+@@ -85,7 +86,10 @@ -+ return; -+ if (card < 0 || card >= cards_limit) -+ return; -+- request_module("snd-card-%i", card); -++ str = kmalloc(15,GFP_KERNEL); -++ snprintf(str,15,"snd-card-%i",card); -++ request_module(str); -++ kfree(str); -+ } -+ -+ static void snd_request_other(int minor) -+@@ -154,7 +158,9 @@ - - struct file_operations snd_fops = - { -@@ -10,7 +30,7 @@ - .open = snd_open - }; - --@@ -364,6 +366,9 @@ -+@@ -364,6 +370,9 @@ - #ifndef MODULE - printk(KERN_INFO "Advanced Linux Sound Architecture Driver Version " CONFIG_SND_VERSION CONFIG_SND_DATE ".\n"); - #endif -@@ -20,7 +40,7 @@ - return 0; - } - --@@ -378,6 +383,9 @@ -+@@ -378,6 +387,9 @@ - snd_info_minor_unregister(); - #endif - snd_info_done(); -@@ -30,7 +50,7 @@ - #ifdef CONFIG_SND_DEBUG_MEMORY - snd_memory_done(); - #endif --@@ -490,3 +498,5 @@ -+@@ -508,3 +520,5 @@ - EXPORT_SYMBOL(snd_wrapper_vmalloc); - EXPORT_SYMBOL(snd_wrapper_vfree); - #endif diff --git a/packages/alsa/alsa-driver_0.9.6-hh4c.bb b/packages/alsa/alsa-driver_0.9.6-hh4c.bb deleted file mode 100644 index 53d898d030..0000000000 --- a/packages/alsa/alsa-driver_0.9.6-hh4c.bb +++ /dev/null @@ -1,83 +0,0 @@ -# needs a gcc4 fix -BROKEN = "1" - -COMPATIBLE_MACHINE = "(h3600|h3900)" - -DESCRIPTION = "Alsa Drivers" -SECTION = "base" -LICENSE = "GPL" -PR = "r6" - -DEPENDS += "fakeroot-native" - -SRC_URI = "ftp://ftp.handhelds.org/packages/alsa-driver/alsa-driver-${PV}.tar.gz \ - file://sound.p.patch;patch=1 \ - file://h5400.patch;patch=1 \ - file://sa11xx.patch;patch=1 \ - file://adriver.h.patch;patch=1" - -inherit autotools module - -EXTRA_OECONF = "--with-sequencer=yes \ - --with-isapnp=no \ - --with-oss=yes \ - --with-kernel=${STAGING_KERNEL_DIR} \ - --with-kernel-version=${KERNEL_VERSION}" - -PACKAGES =+ "${PN}-midi ${PN}-misc" -FILES_${PN} = "/lib/modules/*/misc/snd* \ - ${sysconfdir}/modutils/*" -midi_modules = "snd-seq-midi-emul.o \ - snd-seq-midi-event.o \ - snd-seq-midi.o \ - snd-seq-virmidi.o \ - snd-seq-oss.o" -FILES_${PN}-midi = "${@' '.join(map ((lambda x: '/lib/modules/*/misc/%s' % x), bb.data.getVar('midi_modules', d).split()))}" -misc_modules = "snd-gus-synth.o \ - snd-emu8000-synth.o \ - snd-emux-synth.o \ - snd-ainstr-fm.o \ - snd-ainstr-gf1.o \ - snd-ainstr-iw.o \ - snd-ainstr-simple.o" -FILES_${PN}-misc = "${@' '.join(map ((lambda x: '/lib/modules/*/misc/%s' % x), bb.data.getVar('misc_modules', d).split()))}" - -# put in-kernel headers first in the include search path. -# without this all configure checks fail -CFLAGS =+ "-I${STAGING_KERNEL_DIR}/include" - -do_configure() { - -cards= -if egrep "CONFIG_SA1100_H3[168]00=y" "${STAGING_KERNEL_DIR}/.config" ; then - cards="$cards,sa11xx-uda1341" - familiar_arch=ipaqsa -fi -if grep "CONFIG_ARCH_H3900=y" "${STAGING_KERNEL_DIR}/.config" ; then - cards="$cards,pxa-uda1380,h5400-ak4535" - familiar_arch=ipaqpxa -fi -cards="$cards,bluez-sco,pdaudiocf" - - oe_runconf --with-cards=${cards} -} - - -do_install() { - -if egrep "CONFIG_SA1100_H3[168]00=y" "${STAGING_KERNEL_DIR}/.config" ; then - familiar_arch=ipaqsa -fi -if grep "CONFIG_ARCH_H3900=y" "${STAGING_KERNEL_DIR}/.config" ; then - familiar_arch=ipaqpxa -fi - - fakeroot make -k NODEPMOD=yes DESTDIR=${D} install; - - if [ -d ${D}${sysconfdir}/modutils/ ] ; then - rm -r ${D}${sysconfdir}/modutils/ ; - fi - mkdir -p ${D}${sysconfdir}/modutils/ - cp familiar/alsa-modules-${familiar_arch} ${D}${sysconfdir}/modutils/ -} - diff --git a/packages/alsa/alsa-lib/.mtn2git_empty b/packages/alsa/alsa-lib/.mtn2git_empty deleted file mode 100644 index e69de29bb2..0000000000 --- a/packages/alsa/alsa-lib/.mtn2git_empty +++ /dev/null diff --git a/packages/alsa/alsa-lib/fix-tstamp-declaration.patch b/packages/alsa/alsa-lib/fix-tstamp-declaration.patch deleted file mode 100644 index 59b3b6d150..0000000000 --- a/packages/alsa/alsa-lib/fix-tstamp-declaration.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: alsa-lib-1.0.13/include/global.h -=================================================================== ---- alsa-lib-1.0.13.orig/include/global.h -+++ alsa-lib-1.0.13/include/global.h -@@ -29,6 +29,8 @@ - #define __ALSA_GLOBAL_H_ - - /* for timeval and timespec */ -+#define __need_timeval -+#define __need_timespec - #include <time.h> - - #ifdef __cplusplus diff --git a/packages/alsa/alsa-lib_1.0.11.bb b/packages/alsa/alsa-lib_1.0.11.bb deleted file mode 100644 index b9169e608f..0000000000 --- a/packages/alsa/alsa-lib_1.0.11.bb +++ /dev/null @@ -1,41 +0,0 @@ -DESCRIPTION = "Alsa sound library" -HOMEPAGE = "http://www.alsa-project.org" -SECTION = "libs/multimedia" -LICENSE = "GPL" -PR = "r4" - -# configure.in sets -D__arm__ on the command line for any arm system -# (not just those with the ARM instruction set), this should be removed, -# (or replaced by a permitted #define). -#FIXME: remove the following -ARM_INSTRUCTION_SET = "arm" - -SRC_URI = "ftp://ftp.alsa-project.org/pub/lib/alsa-lib-${PV}.tar.bz2" - -inherit autotools pkgconfig - -EXTRA_OECONF = "--with-cards=pdaudiocf --with-oss=yes" - -do_stage() { - oe_libinstall -so -C src libasound ${STAGING_LIBDIR}/ - install -d ${STAGING_INCDIR}/alsa/sound - install -m 0644 include/*.h ${STAGING_INCDIR}/alsa/ - install -m 0644 include/sound/ainstr*.h ${STAGING_INCDIR}/alsa/sound/ - install -d ${STAGING_DATADIR}/aclocal - install -m 0644 utils/alsa.m4 ${STAGING_DATADIR}/aclocal/ -} - -PACKAGES =+ "alsa-server libasound alsa-conf-base alsa-conf alsa-doc alsa-dev" -FILES_${PN}-dbg += "${libdir}/alsa-lib/*/.debu*" -FILES_libasound = "${libdir}/libasound.so*" -FILES_alsa-server = "${bindir}/*" -FILES_alsa-conf = "${datadir}/alsa/" -FILES_alsa-dev = "${libdir}/pkgconfig/ /usr/include/ ${datadir}/aclocal/*" -FILES_alsa-conf-base = "\ -${datadir}/alsa/alsa.conf \ -${datadir}/alsa/cards/aliases.conf \ -${datadir}/alsa/pcm/default.conf \ -${datadir}/alsa/pcm/dmix.conf \ -${datadir}/alsa/pcm/dsnoop.conf" - -RDEPENDS_libasound = "alsa-conf-base" diff --git a/packages/alsa/alsa-lib_1.0.13.bb b/packages/alsa/alsa-lib_1.0.13.bb deleted file mode 100644 index 78df6dfe02..0000000000 --- a/packages/alsa/alsa-lib_1.0.13.bb +++ /dev/null @@ -1,42 +0,0 @@ -DESCRIPTION = "Alsa sound library" -HOMEPAGE = "http://www.alsa-project.org" -SECTION = "libs/multimedia" -LICENSE = "GPL" -PR = "r3" - -# configure.in sets -D__arm__ on the command line for any arm system -# (not just those with the ARM instruction set), this should be removed, -# (or replaced by a permitted #define). -#FIXME: remove the following -ARM_INSTRUCTION_SET = "arm" - -SRC_URI = "ftp://ftp.alsa-project.org/pub/lib/alsa-lib-${PV}.tar.bz2 \ - file://fix-tstamp-declaration.patch;patch=1" - -inherit autotools pkgconfig - -EXTRA_OECONF = "--with-cards=pdaudiocf --with-oss=yes" - -do_stage() { - oe_libinstall -so -C src libasound ${STAGING_LIBDIR}/ - install -d ${STAGING_INCDIR}/alsa/sound - install -m 0644 include/*.h ${STAGING_INCDIR}/alsa/ - install -m 0644 include/sound/ainstr*.h ${STAGING_INCDIR}/alsa/sound/ - install -d ${STAGING_DATADIR}/aclocal - install -m 0644 utils/alsa.m4 ${STAGING_DATADIR}/aclocal/ -} - -PACKAGES =+ "alsa-server libasound alsa-conf-base alsa-conf alsa-doc alsa-dev" -FILES_${PN}-dbg += "${libdir}/alsa-lib/*/.debu*" -FILES_libasound = "${libdir}/libasound.so.*" -FILES_alsa-server = "${bindir}/*" -FILES_alsa-conf = "${datadir}/alsa/" -FILES_alsa-dev += "${libdir}/pkgconfig/ /usr/include/ ${datadir}/aclocal/*" -FILES_alsa-conf-base = "\ -${datadir}/alsa/alsa.conf \ -${datadir}/alsa/cards/aliases.conf \ -${datadir}/alsa/pcm/default.conf \ -${datadir}/alsa/pcm/dmix.conf \ -${datadir}/alsa/pcm/dsnoop.conf" - -RDEPENDS_libasound = "alsa-conf-base" diff --git a/packages/alsa/alsa-oss_1.0.11.bb b/packages/alsa/alsa-oss_1.0.11.bb deleted file mode 100644 index 9a7751ee6b..0000000000 --- a/packages/alsa/alsa-oss_1.0.11.bb +++ /dev/null @@ -1,19 +0,0 @@ -DESCRIPTION = "Alsa OSS Compatibility Package" -HOMEPAGE = "http://www.alsa-project.org" -SECTION = "libs/multimedia" -LICENSE = "GPL" -DEPENDS = "alsa-lib" -PR = "r0" - -SRC_URI = "ftp://ftp.alsa-project.org/pub/oss-lib/alsa-oss-${PV}.tar.bz2" - -inherit autotools - -do_configure_prepend () { - touch NEWS README AUTHORS ChangeLog -} - -do_stage () { - oe_libinstall -C alsa -a -so libaoss ${STAGING_LIBDIR} - oe_libinstall -C alsa -a -so libalsatoss ${STAGING_LIBDIR} -} diff --git a/packages/alsa/alsa-state.bb b/packages/alsa/alsa-state.bb deleted file mode 100644 index 35c8f5d3d3..0000000000 --- a/packages/alsa/alsa-state.bb +++ /dev/null @@ -1,54 +0,0 @@ -#! /bin/sh -# -# Copyright Matthias Hentges <devel@hentges.net> (c) 2007 -# License: MIT (see http://www.opensource.org/licenses/mit-license.php -# for a copy of the license) -# -# Filename: alsa-state.bb -# Date: 20070308 (YMD) - -DESCRIPTION = "Default ALSA configuration" -LICENSE = "GPL" -RRECOMMENDS_alsa-state = "alsa-states" -PV = "0.0.4" -PR = "r2" - -SRC_URI = "file://asound.state \ - file://alsa-state " - -SRC_URI_append_fic-gta01 = " \ - file://capturehandset.state \ - file://captureheadset.state \ - file://gsmbluetooth.state \ - file://gsmhandset.state \ - file://gsmheadset.state \ - file://stereoout.state" - -inherit update-rc.d - -INITSCRIPT_NAME = "alsa-state" -INITSCRIPT_PARAMS = "defaults 10" - -do_install() { - install -d ${D}${sysconfdir}/init.d - install -m 0755 ${WORKDIR}/alsa-state ${D}${sysconfdir}/init.d - - install -m 0644 ${WORKDIR}/*.state ${D}${sysconfdir} -} - -PACKAGES += "alsa-states" -FILES_${PN} = "${sysconfdir}/init.d" -FILES_alsa-states = "${sysconfdir}/*.state" -PACKAGE_ARCH_${PN} = "all" -PACKAGE_ARCH_alsa-states = "${MACHINE}" - -pkg_postinst_${PN}() { - if test -z "$D" - then - if test -x /usr/sbin/alsactl - then - /usr/sbin/alsactl -f ${sysconfdir}/asound.state restore - fi - fi -} - diff --git a/packages/alsa/alsa-state/.mtn2git_empty b/packages/alsa/alsa-state/.mtn2git_empty deleted file mode 100644 index e69de29bb2..0000000000 --- a/packages/alsa/alsa-state/.mtn2git_empty +++ /dev/null diff --git a/packages/alsa/alsa-state/alsa-state b/packages/alsa/alsa-state/alsa-state deleted file mode 100755 index c6bc1fd494..0000000000 --- a/packages/alsa/alsa-state/alsa-state +++ /dev/null @@ -1,29 +0,0 @@ -#! /bin/sh -# -# Copyright Matthias Hentges <devel@hentges.net> (c) 2007 -# License: GPL (see http://www.gnu.org/licenses/gpl.txt for a copy of the license) -# -# Filename: alsa-state -# Date: 20070308 (YMD) - - -asound_restore(){ - echo "ALSA: Restoring mixer settings..." - if test -x /usr/sbin/alsactl -a -e /etc/asound.state - then - /usr/sbin/alsactl -f /etc/asound.state restore - fi -} - -asound_store(){ - echo "ALSA: Storing mixer settings..." - if test -x /usr/sbin/alsactl - then - /usr/sbin/alsactl -f /etc/asound.state store - fi -} - -case "$1" in -start) asound_restore ;; -stop) asound_store ;; -esac diff --git a/packages/alsa/alsa-state/asound.state b/packages/alsa/alsa-state/asound.state deleted file mode 100644 index 88b0d02657..0000000000 --- a/packages/alsa/alsa-state/asound.state +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, do not delete
\ No newline at end of file diff --git a/packages/alsa/alsa-state/c7x0/.mtn2git_empty b/packages/alsa/alsa-state/c7x0/.mtn2git_empty deleted file mode 100644 index e69de29bb2..0000000000 --- a/packages/alsa/alsa-state/c7x0/.mtn2git_empty +++ /dev/null diff --git a/packages/alsa/alsa-state/c7x0/asound.state b/packages/alsa/alsa-state/c7x0/asound.state deleted file mode 100644 index 7fd648fcf6..0000000000 --- a/packages/alsa/alsa-state/c7x0/asound.state +++ /dev/null @@ -1,151 +0,0 @@ -state.Corgi { - control.1 { - comment.access 'read write' - comment.type INTEGER - comment.count 2 - comment.range '0 - 127' - iface MIXER - name 'Playback Volume' - value.0 103 - value.1 103 - } - control.2 { - comment.access 'read write' - comment.type BOOLEAN - comment.count 2 - iface MIXER - name 'Playback Switch' - value.0 false - value.1 false - } - control.3 { - comment.access 'read write' - comment.type INTEGER - comment.count 2 - comment.range '0 - 31' - iface MIXER - name 'Capture Volume' - value.0 23 - value.1 23 - } - control.4 { - comment.access 'read write' - comment.type BOOLEAN - comment.count 2 - iface MIXER - name 'Capture Switch' - value.0 false - value.1 false - } - control.5 { - comment.access 'read write' - comment.type BOOLEAN - comment.count 1 - iface MIXER - name 'Mic Boost (+20dB)' - value false - } - control.6 { - comment.access 'read write' - comment.type BOOLEAN - comment.count 1 - iface MIXER - name 'Capture Mic Switch' - value true - } - control.7 { - comment.access 'read write' - comment.type INTEGER - comment.count 1 - comment.range '0 - 3' - iface MIXER - name 'Sidetone Playback Volume' - value 3 - } - control.8 { - comment.access 'read write' - comment.type BOOLEAN - comment.count 1 - iface MIXER - name 'ADC High Pass Filter Switch' - value true - } - control.9 { - comment.access 'read write' - comment.type BOOLEAN - comment.count 1 - iface MIXER - name 'Store DC Offset Switch' - value false - } - control.10 { - comment.access 'read write' - comment.type ENUMERATED - comment.count 1 - comment.item.0 None - comment.item.1 '32Khz' - comment.item.2 '44.1Khz' - comment.item.3 '48Khz' - iface MIXER - name 'Playback De-emphasis' - value None - } - control.11 { - comment.access 'read write' - comment.type ENUMERATED - comment.count 1 - comment.item.0 'Line In' - comment.item.1 Mic - iface MIXER - name 'Input Mux' - value 'Line In' - } - control.12 { - comment.access 'read write' - comment.type BOOLEAN - comment.count 1 - iface MIXER - name 'Output Mixer Line Bypass Switch' - value true - } - control.13 { - comment.access 'read write' - comment.type BOOLEAN - comment.count 1 - iface MIXER - name 'Output Mixer Mic Sidetone Switc' - value false - } - control.14 { - comment.access 'read write' - comment.type BOOLEAN - comment.count 1 - iface MIXER - name 'Output Mixer HiFi Playback Swit' - value false - } - control.15 { - comment.access 'read write' - comment.type ENUMERATED - comment.count 1 - comment.item.0 Headphone - comment.item.1 Mic - comment.item.2 Line - comment.item.3 Headset - comment.item.4 Off - iface MIXER - name 'Jack Function' - value Headphone - } - control.16 { - comment.access 'read write' - comment.type ENUMERATED - comment.count 1 - comment.item.0 Auto - comment.item.1 On - comment.item.2 Off - iface MIXER - name 'Speaker Function' - value On - } -} diff --git a/packages/alsa/alsa-state/fic-gta01/.mtn2git_empty b/packages/alsa/alsa-state/fic-gta01/.mtn2git_empty deleted file mode 100644 index e69de29bb2..0000000000 --- a/packages/alsa/alsa-state/fic-gta01/.mtn2git_empty +++ /dev/null diff --git a/packages/alsa/alsa-state/fic-gta01/asound.state b/packages/alsa/alsa-state/fic-gta01/asound.state deleted file mode 100644 index 903bc9d89a..0000000000 --- a/packages/alsa/alsa-state/fic-gta01/asound.state +++ /dev/null @@ -1,900 +0,0 @@ -state.neo1973 { - control.1 { - comment.access 'read write' - comment.type INTEGER - comment.count 2 - comment.range '0 - 255' - iface MIXER - name 'PCM Volume' - value.0 255 - value.1 255 - } - control.2 { - comment.access 'read write' - comment.type INTEGER - comment.count 2 - comment.range '0 - 255' - iface MIXER - name 'ADC Capture Volume' - value.0 195 - value.1 195 - } - control.3 { - comment.access 'read write' - comment.type INTEGER - comment.count 2 - comment.range '0 - 127' - iface MIXER - name 'Headphone Playback Volume' - value.0 127 - value.1 127 - } - control.4 { - comment.access 'read write' - comment.type INTEGER - comment.count 2 - comment.range '0 - 127' - iface MIXER - name 'Speaker Playback Volume' - value.0 121 - value.1 121 - } - control.5 { - comment.access 'read write' - comment.type INTEGER - comment.count 1 - comment.range '0 - 127' - iface MIXER - name 'Mono Playback Volume' - value 121 - } - control.6 { - comment.access 'read write' - comment.type INTEGER - comment.count 2 - comment.range '0 - 7' - iface MIXER - name 'Bypass Playback Volume' - value.0 2 - value.1 2 - } - control.7 { - comment.access 'read write' - comment.type INTEGER - comment.count 2 - comment.range '0 - 7' - iface MIXER - name 'Sidetone Playback Volume' - value.0 2 - value.1 2 - } - control.8 { - comment.access 'read write' - comment.type INTEGER - comment.count 2 - comment.range '0 - 7' - iface MIXER - name 'Voice Playback Volume' - value.0 2 - value.1 2 - } - control.9 { - comment.access 'read write' - comment.type BOOLEAN - comment.count 2 - iface MIXER - name 'Headphone Playback ZC Switch' - value.0 false - value.1 false - } - control.10 { - comment.access 'read write' - comment.type BOOLEAN - comment.count 2 - iface MIXER - name 'Speaker Playback ZC Switch' - value.0 false - value.1 false - } - control.11 { - comment.access 'read write' - comment.type INTEGER - comment.count 1 - comment.range '0 - 7' - iface MIXER - name 'Mono Bypass Playback Volume' - value 2 - } - control.12 { - comment.access 'read write' - comment.type INTEGER - comment.count 1 - comment.range '0 - 7' - iface MIXER - name 'Mono Sidetone Playback Volume' - value 2 - } - control.13 { - comment.access 'read write' - comment.type INTEGER - comment.count 1 - comment.range '0 - 7' - iface MIXER - name 'Mono Voice Playback Volume' - value 2 - } - control.14 { - comment.access 'read write' - comment.type BOOLEAN - comment.count 1 - iface MIXER - name 'Mono Playback ZC Switch' - value false - } - control.15 { - comment.access 'read write' - comment.type ENUMERATED - comment.count 1 - comment.item.0 'Linear Control' - comment.item.1 'Adaptive Boost' - iface MIXER - name 'Bass Boost' - value 'Linear Control' - } - control.16 { - comment.access 'read write' - comment.type ENUMERATED - comment.count 1 - comment.item.0 '130Hz @ 48kHz' - comment.item.1 '200Hz @ 48kHz' - comment.item.2 '100Hz @ 16kHz' - comment.item.3 '400Hz @ 48kHz' - comment.item.4 '100Hz @ 8kHz' - comment.item.5 '200Hz @ 8kHz' - iface MIXER - name 'Bass Filter' - value '130Hz @ 48kHz' - } - control.17 { - comment.access 'read write' - comment.type INTEGER - comment.count 1 - comment.range '0 - 15' - iface MIXER - name 'Bass Volume' - value 0 - } - control.18 { - comment.access 'read write' - comment.type INTEGER - comment.count 1 - comment.range '0 - 15' - iface MIXER - name 'Treble Volume' - value 7 - } - control.19 { - comment.access 'read write' - comment.type ENUMERATED - comment.count 1 - comment.item.0 '8kHz' - comment.item.1 '4kHz' - iface MIXER - name 'Treble Cut-off' - value '8kHz' - } - control.20 { - comment.access 'read write' - comment.type INTEGER - comment.count 2 - comment.range '0 - 7' - iface MIXER - name 'Sidetone Capture Volume' - value.0 2 - value.1 2 - } - control.21 { - comment.access 'read write' - comment.type INTEGER - comment.count 1 - comment.range '0 - 7' - iface MIXER - name 'Voice Sidetone Capture Volume' - value 2 - } - control.22 { - comment.access 'read write' - comment.type INTEGER - comment.count 2 - comment.range '0 - 63' - iface MIXER - name 'Capture Volume' - value.0 23 - value.1 23 - } - control.23 { - comment.access 'read write' - comment.type BOOLEAN - comment.count 2 - iface MIXER - name 'Capture ZC Switch' - value.0 false - value.1 false - } - control.24 { - comment.access 'read write' - comment.type BOOLEAN - comment.count 2 - iface MIXER - name 'Capture Switch' - value.0 false - value.1 false - } - control.25 { |
