← Back to team overview

ac100 team mailing list archive

Re: touchpad in Ubuntu 12.04 BETA2 armhf

 

On Tuesday 03 April 2012 16:55:08 Jasper Taylor wrote:
> On 02/04/12 18:37, Marc Dietrich wrote:
> > On Monday 02 April 2012 16:37:41 Tomáš Vaculín wrote:
> >> >  Hi Marc,
> >> >  
> >> >  Attached please find whole kern.log from last run when the problem occurred.
> >> >  
> >> >  Except start of the system I found this:
> >> >  Apr  2 15:15:45 ac100 kernel: [ 3707.346624] nvec nvec.0: unexpected status
> >> >  flags 0x18 during state 1
> >> >
> >> >  Kernel version is 3.0.19-2-ac100
> > yes, I also saw this. Could be harmless or the source of the problems, hard to predict ...
> >
> > But you can put something like this into your /etc/rc.local:
> >
> > 	echo 16384>  /proc/sys/vm/min_free_kbytes
> >
> > to get rid of the wifi warnings.
> >
> > A limited emergency pool can also be a reason for lost nvec packages.
> >
> > Marc
> >
> I tried this and it had no effect. I have the 10U version.

please check  /proc/sys/vm/min_free_kbytes after reboot.
If it does not contain 16386, please do a chmod +x /etc/rc.local. Several people have
reported that doing this solved the problem for them (until now). Here is my rc.local btw:

=====================

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

# enable autosuspend 
for i in /sys/bus/usb/devices/*/power/autosuspend; do echo 1 > $i; done
for i in /sys/bus/usb/devices/*/power/control; do echo auto > $i; done

# increase the emergency pool
echo 16384 > /proc/sys/vm/min_free_kbytes

# upclock the cpu on io
{
    sleep 90
    echo 1 > /sys/devices/system/cpu/cpufreq/ondemand/io_is_busy
} &

exit 0  

======================


> 
> 
> _______________________________________________
> Mailing list: https://launchpad.net/~ac100
> Post to     : ac100@xxxxxxxxxxxxxxxxxxx
> Unsubscribe : https://launchpad.net/~ac100
> More help   : https://help.launchpad.net/ListHelp
>


Follow ups

References