From: Darren Hart <dvhart@linux.intel.com>
To: Patches and discussions about the oe-core layer
<openembedded-core@lists.openembedded.org>
Subject: Re: [PATCH 2/3] alsa-state: move state files to localstatedir
Date: Thu, 12 Jan 2012 08:23:06 -0800 [thread overview]
Message-ID: <4F0F08EA.3030701@linux.intel.com> (raw)
In-Reply-To: <54448c3044e7492aa31e1c10745c33fbd9c9269a.1326216024.git.josh@linux.intel.com>
On 01/10/2012 09:39 AM, Joshua Lock wrote:
> alsactl creates the state files in /var/lib/alsa by default so switch
> alsa-state to use files in that location.
>
> Further, update the alsa-state init script to have the location of the
> state files sed'ed into the script at do_install time (so as to remove
> hard coding of directory paths).
>
> Signed-off-by: Joshua Lock <josh@linux.intel.com>
Acked-by: Darren Hart <dvhart@linux.intel.com>
> ---
> meta/recipes-bsp/alsa-state/alsa-state.bb | 8 +++++---
> meta/recipes-bsp/alsa-state/alsa-state/alsa-state | 6 +++---
> 2 files changed, 8 insertions(+), 6 deletions(-)
>
> diff --git a/meta/recipes-bsp/alsa-state/alsa-state.bb b/meta/recipes-bsp/alsa-state/alsa-state.bb
> index ecfa975..bc17b25 100644
> --- a/meta/recipes-bsp/alsa-state/alsa-state.bb
> +++ b/meta/recipes-bsp/alsa-state/alsa-state.bb
> @@ -26,11 +26,13 @@ INITSCRIPT_NAME = "alsa-state"
> INITSCRIPT_PARAMS = "start 39 S . stop 31 0 6 ."
>
> do_install() {
> + sed -i -e "s:#STATEDIR#:${localstatedir}/lib/alsa:g" ${WORKDIR}/alsa-state
> install -d ${D}${sysconfdir}/init.d
> install -m 0755 ${WORKDIR}/alsa-state ${D}${sysconfdir}/init.d
>
> + install -d ${D}/${localstatedir}/lib/alsa
> install -m 0644 ${WORKDIR}/asound.conf ${D}${sysconfdir}
> - install -m 0644 ${WORKDIR}/*.state ${D}${sysconfdir}
> + install -m 0644 ${WORKDIR}/*.state ${D}${localstatedir}/lib/alsa
> }
>
> PACKAGES += "alsa-states"
> @@ -40,14 +42,14 @@ RRECOMMENDS_alsa-state = "alsa-states"
> FILES_${PN} = "${sysconfdir}/init.d ${sysconfdir}/asound.conf"
> CONFFILES_${PN} = "${sysconfdir}/asound.conf"
>
> -FILES_alsa-states = "${sysconfdir}/*.state"
> +FILES_alsa-states = "${localstatedir}/lib/alsa/*.state"
>
> pkg_postinst_${PN}() {
> if test -z "$D"
> then
> if test -x /usr/sbin/alsactl
> then
> - /usr/sbin/alsactl -f ${sysconfdir}/asound.state restore
> + /usr/sbin/alsactl -f ${localstatedir}/lib/alsa/asound.state restore
> fi
> # INITSCRIPT_PARAMS changed, so remove the old and
> # install the new setting.
> diff --git a/meta/recipes-bsp/alsa-state/alsa-state/alsa-state b/meta/recipes-bsp/alsa-state/alsa-state/alsa-state
> index 84cdf03..9850791 100755
> --- a/meta/recipes-bsp/alsa-state/alsa-state/alsa-state
> +++ b/meta/recipes-bsp/alsa-state/alsa-state/alsa-state
> @@ -9,9 +9,9 @@
>
> asound_restore(){
> echo "ALSA: Restoring mixer settings..."
> - if test -x /usr/sbin/alsactl -a -e /etc/asound.state
> + if test -x /usr/sbin/alsactl -a -e #STATEDIR#/asound.state
> then
> - /usr/sbin/alsactl -f /etc/asound.state restore &
> + /usr/sbin/alsactl -f #STATEDIR#/asound.state restore &
> fi
> }
>
> @@ -19,7 +19,7 @@ asound_store(){
> echo "ALSA: Storing mixer settings..."
> if test -x /usr/sbin/alsactl
> then
> - /usr/sbin/alsactl -f /etc/asound.state store
> + /usr/sbin/alsactl -f #STATEDIR#/asound.state store
> fi
> }
>
--
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
next prev parent reply other threads:[~2012-01-12 16:30 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-10 17:39 [PATCH 0/3] Add alsa-state from OE Classic v2 Joshua Lock
2012-01-10 17:39 ` [PATCH 1/3] alsa-state: add alsa-state from oe classic Joshua Lock
2012-01-10 19:30 ` Otavio Salvador
2012-01-10 19:44 ` Joshua Lock
2012-01-12 16:22 ` Darren Hart
2012-01-10 17:39 ` [PATCH 2/3] alsa-state: move state files to localstatedir Joshua Lock
2012-01-12 16:23 ` Darren Hart [this message]
2012-01-10 17:39 ` [PATCH 3/3] task-base: add alsa-state to task-base-alsa Joshua Lock
2012-01-12 16:23 ` Darren Hart
2012-01-12 16:31 ` Martin Jansa
2012-01-13 18:54 ` Joshua Lock
2012-01-13 18:58 ` Martin Jansa
2012-01-10 19:34 ` [PATCH 0/3] Add alsa-state from OE Classic v2 Otavio Salvador
2012-01-10 19:45 ` Joshua Lock
2012-01-10 19:48 ` Otavio Salvador
2012-01-24 23:37 ` Joshua Lock
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4F0F08EA.3030701@linux.intel.com \
--to=dvhart@linux.intel.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.