https://bugzilla.kernel.org/show_bug.cgi?id=15532





--- Comment #32 from Jaromír Cápík <tav...@volny.cz>  2010-03-24 17:18:30 ---
Created an attachment (id=25688)
 --> (https://bugzilla.kernel.org/attachment.cgi?id=25688)
dmesg diffs

I created the following script to cut the acpi debug parts associated with each
"echo" call ...

#!/bin/bash

max_brightness=24
cur_brightness=0

old_filename="./initial.txt"

while [ $cur_brightness -le $max_brightness ]; do
  new_filename="./$cur_brightness.txt"
  diff -u $old_filename $new_filename | grep "^+" | awk "FNR>2"  | sed
's/^+//g' > diff_$cur_brightness.txt
  old_filename=$new_filename
  let cur_brightness=cur_brightness+1
done

-- 
Configure bugmail: https://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
acpi-bugzilla mailing list
acpi-bugzilla@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla

Reply via email to