From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga02.intel.com ([134.134.136.20]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1RlNY8-0000fS-07 for openembedded-core@lists.openembedded.org; Thu, 12 Jan 2012 17:30:48 +0100 Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 12 Jan 2012 08:23:16 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.67,352,1309762800"; d="scan'208";a="95748952" Received: from btwarden-mobl1.amr.corp.intel.com (HELO envy.home) ([10.7.199.156]) by orsmga001.jf.intel.com with ESMTP; 12 Jan 2012 08:23:15 -0800 Message-ID: <4F0F08DF.3080207@linux.intel.com> Date: Thu, 12 Jan 2012 08:22:55 -0800 From: Darren Hart User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:8.0) Gecko/20111115 Thunderbird/8.0 MIME-Version: 1.0 To: Patches and discussions about the oe-core layer References: <2dd7849a0c3b785b4edea7d2e8dd4d4cfb71ac57.1326216024.git.josh@linux.intel.com> In-Reply-To: <2dd7849a0c3b785b4edea7d2e8dd4d4cfb71ac57.1326216024.git.josh@linux.intel.com> X-Enigmail-Version: 1.3.4 Subject: Re: [PATCH 1/3] alsa-state: add alsa-state from oe classic X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Patches and discussions about the oe-core layer List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jan 2012 16:30:48 -0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 01/10/2012 09:39 AM, Joshua Lock wrote: > alsa-state adds an init script and configuration files to enable a > consistent and centralised mechanism for setting and restoring alsa > configuration. > > Signed-off-by: Joshua Lock Acked-by: Darren Hart > --- > meta/recipes-bsp/alsa-state/alsa-state.bb | 57 ++++++++++++++++++++ > meta/recipes-bsp/alsa-state/alsa-state/alsa-state | 29 ++++++++++ > meta/recipes-bsp/alsa-state/alsa-state/asound.conf | 12 ++++ > .../recipes-bsp/alsa-state/alsa-state/asound.state | 1 + > 4 files changed, 99 insertions(+), 0 deletions(-) > create mode 100644 meta/recipes-bsp/alsa-state/alsa-state.bb > create mode 100755 meta/recipes-bsp/alsa-state/alsa-state/alsa-state > create mode 100644 meta/recipes-bsp/alsa-state/alsa-state/asound.conf > create mode 100644 meta/recipes-bsp/alsa-state/alsa-state/asound.state > > diff --git a/meta/recipes-bsp/alsa-state/alsa-state.bb b/meta/recipes-bsp/alsa-state/alsa-state.bb > new file mode 100644 > index 0000000..ecfa975 > --- /dev/null > +++ b/meta/recipes-bsp/alsa-state/alsa-state.bb > @@ -0,0 +1,57 @@ > +# Copyright Matthias Hentges (c) 2007 > +# License: MIT (see http://www.opensource.org/licenses/mit-license.php > +# for a copy of the license) > +# > +# Filename: alsa-state.bb > + > +SUMMARY = "Alsa scenario files to enable alsa state restoration." > +DESCRIPTION = "Alsa Scenario Files - an init script and state files to restore \ > +sound state at system boot and save it at system shut down." > +LICENSE = "MIT" > +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" > +PV = "0.2.0" > +PR = "r0" > + > +SRC_URI = "\ > + file://asound.conf \ > + file://asound.state \ > + file://alsa-state \ > +" > + > +RDEPENDS = "alsa-utils-alsactl" > + > +inherit update-rc.d > + > +INITSCRIPT_NAME = "alsa-state" > +INITSCRIPT_PARAMS = "start 39 S . stop 31 0 6 ." > + > +do_install() { > + install -d ${D}${sysconfdir}/init.d > + install -m 0755 ${WORKDIR}/alsa-state ${D}${sysconfdir}/init.d > + > + install -m 0644 ${WORKDIR}/asound.conf ${D}${sysconfdir} > + install -m 0644 ${WORKDIR}/*.state ${D}${sysconfdir} > +} > + > +PACKAGES += "alsa-states" > + > +RRECOMMENDS_alsa-state = "alsa-states" > + > +FILES_${PN} = "${sysconfdir}/init.d ${sysconfdir}/asound.conf" > +CONFFILES_${PN} = "${sysconfdir}/asound.conf" > + > +FILES_alsa-states = "${sysconfdir}/*.state" > + > +pkg_postinst_${PN}() { > + if test -z "$D" > + then > + if test -x /usr/sbin/alsactl > + then > + /usr/sbin/alsactl -f ${sysconfdir}/asound.state restore > + fi > + # INITSCRIPT_PARAMS changed, so remove the old and > + # install the new setting. > + update-rc.d -f ${INITSCRIPT_NAME} remove > + update-rc.d ${INITSCRIPT_NAME} ${INITSCRIPT_PARAMS} > + fi > +} > diff --git a/meta/recipes-bsp/alsa-state/alsa-state/alsa-state b/meta/recipes-bsp/alsa-state/alsa-state/alsa-state > new file mode 100755 > index 0000000..84cdf03 > --- /dev/null > +++ b/meta/recipes-bsp/alsa-state/alsa-state/alsa-state > @@ -0,0 +1,29 @@ > +#! /bin/sh > +# > +# Copyright Matthias Hentges (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/meta/recipes-bsp/alsa-state/alsa-state/asound.conf b/meta/recipes-bsp/alsa-state/alsa-state/asound.conf > new file mode 100644 > index 0000000..6be0242 > --- /dev/null > +++ b/meta/recipes-bsp/alsa-state/alsa-state/asound.conf > @@ -0,0 +1,12 @@ > +# default dmix configuration > + > +pcm.!default { > + type plug > + slave.pcm "dmix" > +} > + > +ctl.mixer0 { > + type hw > + card 0 > +} > + > diff --git a/meta/recipes-bsp/alsa-state/alsa-state/asound.state b/meta/recipes-bsp/alsa-state/alsa-state/asound.state > new file mode 100644 > index 0000000..88b0d02 > --- /dev/null > +++ b/meta/recipes-bsp/alsa-state/alsa-state/asound.state > @@ -0,0 +1 @@ > +# Dummy file, do not delete > \ No newline at end of file -- Darren Hart Intel Open Source Technology Center Yocto Project - Linux Kernel