Results 1 to 10 of 312

Thread: HP Mini 210 touchpad right click not working

Threaded View

  1. #11
    Join Date
    Jul 2009
    Beans
    6

    Re: HP Mini 210 touchpad right click not working

    You're much better off actually fixing the problem with the driver, as telling the system that the touchpad is a PS/2 mouse leaves you with zero control of the pad on the Mini 210. To do this, download the attachment at the bottom of this post and save it in your home folder:

    Open the terminal on your Mini 210 and

    Code:
    sudo apt-get install build-essential patch linux-source
    The kernel source will be a tarball that is installed in /usr/src. Extract it to your home directory like so:

    Code:
    tar -xjvf /usr/src/linux-source <tab>
    Note that pressing tab will autocomplete to the version you downloaded. Once extracted, change to the source directory and untar the patch attachment you downloaded at the beginning:

    Code:
    cd linux-source <tab>
    tar -xzvf ../clickpad.tar.gz
    Now we'll patch the driver files, copy the Makefile to the right place, and compile and install the new driver:

    Code:
    patch -p1 <clickpad_patch
    cp Makefile drivers/input/mouse/
    cd drivers/input/mouse
    make
    sudo make install
    Reboot your machine, and you'll find the touchpad works like it should. Note that this patch is based on Takashi Iwai's fine work here: http://patchwork.kernel.org/patch/67335/
    Attached Files Attached Files

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •