Page 4 of 9 FirstFirst ... 23456 ... LastLast
Results 31 to 40 of 85

Thread: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

  1. #31
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    Could you compress and attach the entire ouput of ./configure on your next post? The commands you are using included? I want to make sure I am not missing something.

    So the line we are using is?
    Code:
    sudo apt-get install build-essential xutils-dev xutils libx11-dev libxext-dev xautomation xinput xserver-xorg-dev autoconf libtool pkg-config

  2. #32
    Join Date
    Sep 2011
    Beans
    23

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    Could you compress and attach the entire ouput of ./configure on your next post? The commands you are using included? I want to make sure I am not missing something.
    What I have written above is all output displayed by the command ./configure --prefix=/usr

    Just that:
    Code:
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... no
    checking for mawk... mawk
    checking whether make sets $(MAKE)... yes
    checking whether to enable maintainer-specific portions of Makefiles... no
    configure: error: cannot run /bin/bash ./config.sub
    No more.

    So the line we are using is?
    Code:
    sudo apt-get install build-essential xutils-dev xutils libx11-dev libxext-dev xautomation xinput xserver-xorg-dev autoconf libtool pkg-config
    Yes, according to the README file that's all the dependencies, adding the packages you suggested.

    specifically but since it is happening with configure try adding to:
    Code:
    sudo apt-get install build-essential
    these three:
    Code:
    sudo apt-get install build-essential autoconf libtool pkg-config
    just to cover the bases.

  3. #33
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    Do you have automake installed?
    Code:
    sudo apt-get install automake
    It worked for me so I can't see why it would need something like:
    Code:
    aclocal && automake && autoconf
    We're not adding new files that need to be included in the build scripts after all.


    Edit: Another thought. Are you running make clean between compile attempts?
    Last edited by Favux; October 22nd, 2012 at 04:41 AM.

  4. #34
    Join Date
    Oct 2012
    Beans
    17

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    Code:
    cd Desktop

    sudo apt-get build-dep --no-install-recommends linux-image-$(uname -r)

    apt-get source linux-image-$(uname -r)
    The dependencies can take a while to download. The kernel is about 94 MB and takes a few minutes to download depending on your connection. With Oneiric you'll see something like linux_3.0.0.orig.tar.gz, linux_3.0.0-16.29.dsc, linux_3.0.0-16.29.diff.gz, and linux-3.0.0. If the kernel source code doesn't download then you may need to check in Software Sources in the Ubuntu Software tab if you have the box in front of Source code checked.

    To see the files you want to patch and then compile you can use Nautilus (Places) to go into the kernel's folder (e.g. linux-3.0.0) now on your Desktop and navigate to drivers/input/hid.

    You'll apply the patch in the terminal using the following commands changing the folder name for Precise of course.

  5. #35
    Join Date
    Sep 2011
    Beans
    23

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    Do you have automake installed?
    It was installed...

    Edit: Another thought. Are you running make clean between compile attempts?
    I can not compile without being able execute the command ./Configure - prefix = / usr, since I can not run make without a makefile created by ./Configure - prefix = / usr.

    Therefore I have not executed the command make clean. Do I have to do it without making a makefile, or used make?

    aclocal && automake && autoconf show:
    Code:
    configure.ac:53: required file `./config.guess' not found
    configure.ac:53:   `automake --add-missing' can install `config.guess'
    configure.ac:53: required file `./config.sub' not found
    configure.ac:53:   `automake --add-missing' can install `config.sub'
    just that.
    Last edited by Muy-burro; October 23rd, 2012 at 02:03 AM. Reason: add a command output.

  6. #36
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    A lot of folks run make clean before they try another compile attempt as a matter of course. To make sure nothing from a previous compile is clouding things. I am nearly certain I ran make clean before my successful WizardPen compile.

    What happens if you substitute for:
    Code:
    ./configure --prefix=/usr
    this line?
    Code:
    ./autogen.sh --prefix=/usr
    Last edited by Favux; October 23rd, 2012 at 02:21 AM.

  7. #37
    Join Date
    Sep 2011
    Beans
    23

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    make clean show:
    Code:
    make: *** No hay ninguna regla para construir el objetivo «clean».  Alto.
    It say: No rule to make the target.

    ./autogen.sh --prefix=/usr show:
    Code:
    autoreconf: Entering directory `.'
    autoreconf: configure.ac: not using Gettext
    autoreconf: running: aclocal 
    autoreconf: configure.ac: tracing
    autoreconf: running: libtoolize --install --copy
    libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, `.'.
    libtoolize: copying file `./config.guess'
    libtoolize: copying file `./config.sub'
    libtoolize: copying file `./ltmain.sh'
    libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and
    libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
    libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
    autoreconf: running: /usr/bin/autoconf
    autoreconf: running: /usr/bin/autoheader
    autoreconf: running: automake --add-missing --copy --no-force
    autoreconf: Leaving directory `.'
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... no
    checking for mawk... mawk
    checking whether make sets $(MAKE)... yes
    checking whether to enable maintainer-specific portions of Makefiles... yes
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking how to print strings... printf
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables... 
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking for a sed that does not truncate output... /bin/sed
    checking for grep that handles long lines and -e... /bin/grep
    checking for egrep... /bin/grep -E
    checking for fgrep... /bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for mt... mt
    checking if mt is a manifest tool... no
    checking how to run the C preprocessor... gcc -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking dependency style of gcc... (cached) gcc3
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking if RANDR is defined... yes
    checking if XINPUT is defined... yes
    checking for XORG... yes
    checking for ANSI C header files... (cached) yes
    checking linux/input.h usability... yes
    checking linux/input.h presence... yes
    checking for linux/input.h... yes
    checking sysfs/libsysfs.h usability... no
    checking sysfs/libsysfs.h presence... no
    checking for sysfs/libsysfs.h... no
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating src/Makefile
    config.status: creating man/Makefile
    config.status: creating udev/Makefile
    config.status: creating xorg/Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    Process stops there.

    Should I use now make && sudo make install?

  8. #38
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    Yes, please.

    I think that might have done it.

  9. #39
    Join Date
    Sep 2011
    Beans
    23

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    ./configure --prefix=/usr show:
    Code:
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... no
    checking for mawk... mawk
    checking whether make sets $(MAKE)... yes
    checking whether to enable maintainer-specific portions of Makefiles... no
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking how to print strings... printf
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables... 
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking for a sed that does not truncate output... /bin/sed
    checking for grep that handles long lines and -e... /bin/grep
    checking for egrep... /bin/grep -E
    checking for fgrep... /bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for mt... mt
    checking if mt is a manifest tool... no
    checking how to run the C preprocessor... gcc -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking dependency style of gcc... (cached) gcc3
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking if RANDR is defined... yes
    checking if XINPUT is defined... yes
    checking for XORG... yes
    checking for ANSI C header files... (cached) yes
    checking linux/input.h usability... yes
    checking linux/input.h presence... yes
    checking for linux/input.h... yes
    checking sysfs/libsysfs.h usability... no
    checking sysfs/libsysfs.h presence... no
    checking for sysfs/libsysfs.h... no
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating src/Makefile
    config.status: creating man/Makefile
    config.status: creating udev/Makefile
    config.status: creating xorg/Makefile
    config.status: creating config.h
    config.status: config.h is unchanged
    config.status: executing depfiles commands
    config.status: executing libtool commands
    make show:
    Code:
    make  all-recursive
    make[1]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1»
    Making all in src
    make[2]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/src»
    /bin/bash ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..     -g -O2 -fvisibility=hidden -I/usr/include/pixman-1 -I/usr/include/xorg    -I../src -MT wizardpen.lo -MD -MP -MF .deps/wizardpen.Tpo -c -o wizardpen.lo wizardpen.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -g -O2 -fvisibility=hidden -I/usr/include/pixman-1 -I/usr/include/xorg -I../src -MT wizardpen.lo -MD -MP -MF .deps/wizardpen.Tpo -c wizardpen.c  -fPIC -DPIC -o .libs/wizardpen.o
    wizardpen.c:118:1: warning: initialization from incompatible pointer type [enabled by default]
    wizardpen.c:118:1: warning: (near initialization for 'WIZARDPEN.default_options') [enabled by default]
    mv -f .deps/wizardpen.Tpo .deps/wizardpen.Plo
    /bin/bash ../libtool --tag=CC   --mode=link gcc  -g -O2 -fvisibility=hidden -I/usr/include/pixman-1 -I/usr/include/xorg    -I../src -module -avoid-version  -o wizardpen_drv.la -rpath /usr/lib/xorg/modules/input wizardpen.lo  
    libtool: link: gcc -shared  -fPIC -DPIC  .libs/wizardpen.o    -O2   -Wl,-soname -Wl,wizardpen_drv.so -o .libs/wizardpen_drv.so
    libtool: link: ( cd ".libs" && rm -f "wizardpen_drv.la" && ln -s "../wizardpen_drv.la" "wizardpen_drv.la" )
    make[2]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/src»
    Making all in man
    make[2]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/man»
    sed -e 's|__vendorversion__|"wizardpen 0.8.1" "X Version 11"|' -e 's|__xorgversion__|"wizardpen 0.8.1" "X Version 11"|' -e 's|__xservername__|Xorg|g' -e 's|__xconfigfile__|xorg.conf|g' -e 's|__projectroot__|/usr|g' -e 's|__appmansuffix__|1|g' -e 's|__drivermansuffix__|4|g' -e 's|__adminmansuffix__|8|g' -e 's|__miscmansuffix__|7|g' -e 's|__filemansuffix__|5|g' < wizardpen.man > wizardpen.4
    make[2]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/man»
    Making all in udev
    make[2]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/udev»
    make[2]: No se hace nada para «all».
    make[2]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/udev»
    Making all in xorg
    make[2]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/xorg»
    make[2]: No se hace nada para «all».
    make[2]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/xorg»
    make[2]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1»
    gcc -DHAVE_CONFIG_H -I.     -g -O2 -fvisibility=hidden -I/usr/include/pixman-1 -I/usr/include/xorg    -I./src -MT wizardpen-calibrate.o -MD -MP -MF .deps/wizardpen-calibrate.Tpo -c -o wizardpen-calibrate.o `test -f 'calibrate/wizardpen-calibrate.c' || echo './'`calibrate/wizardpen-calibrate.c
    mv -f .deps/wizardpen-calibrate.Tpo .deps/wizardpen-calibrate.Po
    /bin/bash ./libtool --tag=CC   --mode=link gcc  -g -O2 -fvisibility=hidden -I/usr/include/pixman-1 -I/usr/include/xorg    -I./src   -o calibrate/wizardpen-calibrate wizardpen-calibrate.o  
    libtool: link: gcc -g -O2 -fvisibility=hidden -I/usr/include/pixman-1 -I/usr/include/xorg -I./src -o calibrate/wizardpen-calibrate wizardpen-calibrate.o 
    make[2]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1»
    make[1]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1»
    sudo make install show:
    Code:
    [sudo] password for usuario_lol: 
    Making install in src
    make[1]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/src»
    make[2]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/src»
    make[2]: No se hace nada para «install-exec-am».
    test -z "/usr/lib/xorg/modules/input" || /bin/mkdir -p "/usr/lib/xorg/modules/input"
     /bin/bash ../libtool   --mode=install /usr/bin/install -c   wizardpen_drv.la '/usr/lib/xorg/modules/input'
    libtool: install: /usr/bin/install -c .libs/wizardpen_drv.so /usr/lib/xorg/modules/input/wizardpen_drv.so
    libtool: install: /usr/bin/install -c .libs/wizardpen_drv.lai /usr/lib/xorg/modules/input/wizardpen_drv.la
    libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/xorg/modules/input
    ----------------------------------------------------------------------
    Libraries have been installed in:
       /usr/lib/xorg/modules/input
    
    If you ever happen to want to link against installed libraries
    in a given directory, LIBDIR, you must either use libtool, and
    specify the full pathname of the library, or use the `-LLIBDIR'
    flag during linking and do at least one of the following:
       - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
         during execution
       - add LIBDIR to the `LD_RUN_PATH' environment variable
         during linking
       - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
       - have your system administrator add LIBDIR to `/etc/ld.so.conf'
    
    See any operating system documentation about shared libraries for
    more information, such as the ld(1) and ld.so(8) manual pages.
    ----------------------------------------------------------------------
    make[2]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/src»
    make[1]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/src»
    Making install in man
    make[1]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/man»
    make[2]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/man»
    make[2]: No se hace nada para «install-exec-am».
    test -z "/usr/share/man/man4" || /bin/mkdir -p "/usr/share/man/man4"
     /usr/bin/install -c -m 644 wizardpen.4 '/usr/share/man/man4'
    make[2]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/man»
    make[1]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/man»
    Making install in udev
    make[1]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/udev»
    make[2]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/udev»
    make[2]: No se hace nada para «install-exec-am».
    test -z "/etc/udev/rules.d" || /bin/mkdir -p "/etc/udev/rules.d"
     /usr/bin/install -c -m 644 67-xorg-wizardpen.rules '/etc/udev/rules.d'
    make[2]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/udev»
    make[1]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/udev»
    Making install in xorg
    make[1]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/xorg»
    make[2]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/xorg»
    make[2]: No se hace nada para «install-exec-am».
    test -z "/usr/share/X11/xorg.conf.d" || /bin/mkdir -p "/usr/share/X11/xorg.conf.d"
     /usr/bin/install -c -m 644 70-wizardpen.conf '/usr/share/X11/xorg.conf.d'
    make[2]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/xorg»
    make[1]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1/xorg»
    make[1]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1»
    make[2]: se ingresa al directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1»
    test -z "/usr/bin" || /bin/mkdir -p "/usr/bin"
      /bin/bash ./libtool   --mode=install /usr/bin/install -c calibrate/wizardpen-calibrate '/usr/bin'
    libtool: install: /usr/bin/install -c calibrate/wizardpen-calibrate /usr/bin/wizardpen-calibrate
    make[2]: No se hace nada para «install-data-am».
    make[2]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1»
    make[1]: se sale del directorio «/home/usuario_lol/Escritorio/xserver-xorg-input-wizardpen-0.8.1»
    I put a fake username in this to avoid problems, and I will restart. In a little while I tell you the results.

  10. #40
    Join Date
    Sep 2011
    Beans
    23

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    LOL, WizardPen controller works. I am writing this in Cellwriter to test its functionality, but even acknowledges precise tolerance of the tip of the pen in MyPaint.

    Thank you very much for the help and patience.

    Here is the data provided by xinput_calibrator:
    Code:
    Calibrating standard Xorg driver "H850S"
            current calibration values: min_x=1600, max_x=30400 and min_y=1000, max_y=19000
            If these values are estimated wrong, either supply it manually with the --precalib option, or run the 'get_precalib.sh' script to automatically get it (through HAL).
    
    
    --> Making the calibration permanent <--
      copy the snippet below into '/etc/X11/xorg.conf.d/99-calibration.conf'
    Section "InputClass"
            Identifier      "calibration"
            MatchProduct    "H850S"
            Option  "MinX"  "1567"
            Option  "MaxX"  "30675"
            Option  "MinY"  "1058"
            Option  "MaxY"  "18964"
    EndSection
    Last edited by Muy-burro; October 23rd, 2012 at 04:35 AM. Reason: add something.

Page 4 of 9 FirstFirst ... 23456 ... LastLast

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
  •