mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Good news --- jump from 2.6.13-rc3 to 2.6.16  (almost) ok (swsusp, input)
@ 2006-03-27 12:07 Romano Giannetti
  2006-03-28 22:19 ` Pavel Machek
  0 siblings, 1 reply; 2+ messages in thread
From: Romano Giannetti @ 2006-03-27 12:07 UTC (permalink / raw)
  To: linux-kernel


Hi all. 

I finally tried to install 2.6.16 on my portable PC, jumping directly from
2.6.13-rc3, and there are good news. The most critical thing, namely swsusp,
did work ok and seems faster than before. A little problem is that when
starting the suspend, no messages are printed (the screen goes blank and
after a bit the machine poweroff). But then resume is ok . The same goes for
-ck1,  which has a really nice feeling.

The only little problem is with the synaptics ALPS touchpad. It seems that the
"event" interface changes at every reboot, and the method "use device
/dev/psaux" and protocol "auto-dev" does not work. All logs are here:

http://www.dea.icai.upco.es/romano/linux/vaio-conf/config-2.6.16-ck1-after-boot/laptop-config.html

Thanks for the good work, all.

       Romano 

PS: this is probably offtopic, but my laptop started doing a very strange 
thing. When powered off and then rapidly powered on, it stays stuck at the
"Sony" logo page. I have to wait 2 to 3 minutes to have it enters LILO. Any
idea? I lost time too; could the little bios-backup battery be responsible? 
Thanks!

-- 
Romano Giannetti             -  Univ. Pontificia Comillas (Madrid, Spain)
Electronic Engineer - phone +34 915 422 800 ext 2416  fax +34 915 596 569
http://www.dea.icai.upcomillas.es/romano/

--
La presente comunicación tiene carácter confidencial y es para el exclusivo uso del destinatario indicado en la misma. Si Ud. no es el destinatario indicado, le informamos que cualquier forma de distribución, reproducción o uso de esta comunicación y/o de la información contenida en la misma están estrictamente prohibidos por la ley. Si Ud. ha recibido esta comunicación por error, por favor, notifíquelo inmediatamente al remitente contestando a este mensaje y proceda a continuación a destruirlo. Gracias por su colaboración.

This communication contains confidential information. It is for the exclusive use of the intended addressee. If you are not the intended addressee, please note that any form of distribution, copying or use of this communication or the information in it is strictly prohibited by law. If you have received this communication in error, please immediately notify the sender by reply e-mail and destroy this message. Thank you for your cooperation. 

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Good news --- jump from 2.6.13-rc3 to 2.6.16  (almost) ok (swsusp, input)
  2006-03-27 12:07 Good news --- jump from 2.6.13-rc3 to 2.6.16 (almost) ok (swsusp, input) Romano Giannetti
@ 2006-03-28 22:19 ` Pavel Machek
  0 siblings, 0 replies; 2+ messages in thread
From: Pavel Machek @ 2006-03-28 22:19 UTC (permalink / raw)
  To: Romano Giannetti, linux-kernel

Hi!

> I finally tried to install 2.6.16 on my portable PC, jumping directly from
> 2.6.13-rc3, and there are good news. The most critical thing, namely swsusp,
> did work ok and seems faster than before. A little problem is that when
> starting the suspend, no messages are printed (the screen goes blank and
> after a bit the machine poweroff). But then resume is ok . The same goes for
> -ck1,  which has a really nice feeling.

See FAQ:

Q: How do I make suspend more verbose?

A: If you want to see any non-error kernel messages on the virtual
terminal the kernel switches to during suspend, you have to set the
kernel console loglevel to at least 4 (KERN_WARNING), for example by
doing

        # save the old loglevel
        read LOGLEVEL DUMMY < /proc/sys/kernel/printk
        # set the loglevel so we see the progress bar.
        # if the level is higher than needed, we leave it alone.
        if [ $LOGLEVEL -lt 5 ]; then
                echo 5 > /proc/sys/kernel/printk
                fi

        IMG_SZ=0
        read IMG_SZ < /sys/power/image_size
        echo -n disk > /sys/power/state
        RET=$?
        #
        # the logic here is:
        # if image_size > 0 (without kernel support, IMG_SZ will be
zero),
        # then try again with image_size set to zero.
        if [ $IMG_SZ -ne 0 ]; then # try again with minimal image size
                echo 0 > /sys/power/image_size
                echo -n disk > /sys/power/state
                RET=$?
        fi

        # restore previous loglevel
        echo $LOGLEVEL > /proc/sys/kernel/printk
        exit $RET


-- 
Picture of sleeping (Linux) penguin wanted...

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-03-28 22:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-03-27 12:07 Good news --- jump from 2.6.13-rc3 to 2.6.16 (almost) ok (swsusp, input) Romano Giannetti
2006-03-28 22:19 ` Pavel Machek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®