On Tue (04/02/14), Paul Irofti wrote:
> Could you try to revert the recent acpiasus diff and then see if the
> issue reproduces?
> http://marc.info/?l=openbsd-tech&m=139100037603478&w=2
Hi there,
it crashes with 1.15 too. I'm planning to investigate it more as soon as
I have some spare time.
I think it's not hardware's fault since it was running Linux before
without problems. To be sure though, it'd be great to have some feedback
on the issue from other Eeepc 100XXX owners.
Run something like the following shell script to automate the suspend
cycle and report crashes if any. Thanks.
#!/bin/sh
# how many times should it suspend
_iter=20
_counter=0
while [ ${_counter} -lt ${_iter} ]; do
# sleep before and after the suspend to give enough
# time to devices to re-attach correctly.
sleep 5
zzz
sleep 7
let _counter=${_counter}+1
done