mirror of
git://slackware.nl/current.git
synced 2024-12-31 10:28:29 +01:00
76fc4757ac
Mon Nov 4 17:08:47 UTC 2013 Slackware 14.1 x86_64 stable is released! It's been another interesting release cycle here at Slackware bringing new features like support for UEFI machines, updated compilers and development tools, the switch from MySQL to MariaDB, and many more improvements throughout the system. Thanks to the team, the upstream developers, the dedicated Slackware community, and everyone else who pitched in to help make this release a reality. The ISOs are off to be replicated, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. Please consider supporting the Slackware project by picking up a copy from store.slackware.com. We're taking pre-orders now, and offer a discount if you sign up for a subscription. Have fun! :-)
32 lines
1 KiB
Diff
32 lines
1 KiB
Diff
From 67abbd2f5109a732ab967c94bef4d6d9b2a11541 Mon Sep 17 00:00:00 2001
|
|
From: Florian Kriener <florian@kriener.org>
|
|
Date: Sat, 25 Sep 2010 11:27:30 +0200
|
|
Subject: [PATCH] wrong path in intel-audio-powersave (and a small bug)
|
|
|
|
Package: pm-utils
|
|
Version: 1.4.1-2
|
|
Severity: normal
|
|
Tags: patch
|
|
---
|
|
pm/power.d/intel-audio-powersave | 4 ++--
|
|
1 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/pm/power.d/intel-audio-powersave b/pm/power.d/intel-audio-powersave
|
|
index 36675a8..da63e40 100644
|
|
--- a/pm/power.d/intel-audio-powersave
|
|
+++ b/pm/power.d/intel-audio-powersave
|
|
@@ -20,9 +20,9 @@ EOF
|
|
|
|
audio_powersave() {
|
|
[ "$INTEL_AUDIO_POWERSAVE" = "true" ] || exit $NA
|
|
- for dev in /sys/module/snd_*/parameters/power_save; do
|
|
+ for dev in /sys/module/snd_*; do
|
|
[ -w "$dev/parameters/power_save" ] || continue
|
|
- printf "Setting power savings for $s to %d..." "$dev##*/" "$1"
|
|
+ printf "Setting power savings for %s to %d..." "${dev##*/}" "$1"
|
|
echo $1 > "$dev/parameters/power_save" && echo Done. || echo Failed.
|
|
done
|
|
}
|
|
--
|
|
1.7.3.4
|
|
|