All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Virgil" <yyz001@euroseek.com>
To: linux-laptop@vger.kernel.org
Cc: Patrick Plattes <patrick@erdbeere.net>
Subject: Re: Kernel problems with HP ze4145
Date: Sun, 27 Apr 2003 13:28:02 -0400	[thread overview]
Message-ID: <web-3337523@euroseek.com> (raw)
In-Reply-To: <20030425111159.GB660@erdbeere.net>

Patrick,

> is there anything interessting in /var/log/* ?
No, there's absolutely nothing interesting in both 
kern.log and sys.log.

I did ln -sf ../init.d/usb-init S45usb in /etc/rc.d/rc3.d 
so that the modules would be loaded automatically at 
startup.

My /etc/rc.d/init.d/usb-init script
#!/bin/bash
#Begin /etc/rc.d/init.d/usb-init

source /etc/sysconfig/rc
source $rc_functions

case "$1" in
       start)
                echo "Initialising USB..."
                modprobe usbcore
                modprobe usb-ohci
                evaluate_retval
                ;;
       stop)
                echo "Unloading USB..."
                rmmod usb-ohci
                rmmod usbcore
                evaluate_retval
                ;;
       restart)
                $0 stop
                sleep 1
                $0 start
                ;;
       status)
                lsmod | grep usb-ohci
                evaluate_retval
                ;;
       *)
                echo "Usage: $0 
{start|stop|restart|status}"
                exit 1
                ;;
esac
# End /etc/rc.d/init.d/usb-init

---------- Excerpt from kern.log --------------
usb.c: registered new driver usbdevfs
usb.c: registered new driver hub
usb-ohci.c: USB OHCI at membase 0xe08cb00, IRQ 9
usb-ohci.c: usb-00:02.0, Acer Laboratories Inc. [ALi] USB 
1.1 Controller
usb.c: new USB bus registered, assigned bus number 1
hub.c: USB hub found
hub.c: 4 ports detected
(At this point the keyboard does not work, so I pressed 
the power button)
Kernel logging (proc) stopped
Kernel log daemon terminating
---------- end kern.log -----------------------

Exactly the above messages appear if I manually do the 
modprobe, except this time the keyboard no longer locks.

So, at this point I'm really out of ideas. Does anyone 
think posting my problem on linux-kernel would yield 
anything?

Virgil
-------------------------------------------------
Search for pictures with Euroseek Image Search
http://euroseek.com/image_search/

Euroseek Translation
http://www.euroseek.com/translator/



       reply	other threads:[~2003-04-27 17:28 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20030425111159.GB660@erdbeere.net>
2003-04-27 17:28 ` Virgil [this message]
2003-04-25  0:56 Kernel problems with HP ze4145 Virgil

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=web-3337523@euroseek.com \
    --to=yyz001@euroseek.com \
    --cc=linux-laptop@vger.kernel.org \
    --cc=patrick@erdbeere.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.