WineHQ
Wine Forums

Board index » WineHQ » Wine Help




 Page 1 of 1 [ 14 posts ] 



 
Author Message
 Post subject: USB Wine support patch
 Post Posted: Mon Mar 05, 2012 8:53 am 
Offline
Level 2
Level 2

Joined: Wed Feb 29, 2012 7:35 pm
Posts: 35
I'd like to test the usb support in wine as it says on the page:
http://wiki.winehq.org/USB

I made the order process with the source Wine 1.4-rc6, baixeis the 2 latest patches in ftp://ftp.etersoft.ru/pub/people/amorozov/usb/current

the patch 0001-Add-support was accepted without errors, but the patch
0002-Re-generate an error there, which allows the wine to compile:

root@hiphop:/home/hiphop/extra/cd-linux/wine/wine-1.4-rc6# patch -p1 -i 0002-Re-generate-some-files.txt
patching file configure
patching file include/Makefile.in
patching file include/config.h.in
patching file include/wine/server_protocol.h
Hunk #1 succeeded at 4889 (offset 2 lines).
Hunk #2 succeeded at 5151 (offset 2 lines).
Hunk #3 succeeded at 5406 (offset 2 lines).
Hunk #4 FAILED at 5657.
1 out of 4 hunks FAILED -- saving rejects to file include/wine/server_protocol.h.rej
patching file server/request.h
Hunk #3 succeeded at 2145 (offset 1 line).
patching file server/trace.c
Hunk #1 succeeded at 3913 (offset 1 line).
Hunk #2 succeeded at 4171 (offset 1 line).
Hunk #3 succeeded at 4422 (offset 1 line).
Hunk #4 succeeded at 4673 (offset 1 line).

after the compilation of make all, stop in the ntoskrnl
I would like to help to get patch, perhaps aguma thing I can modify the text to build on the success

** I know that the patch was made to version 1.4-rc1 Wine, but I want to compile it in 1.4-rc6, because fixed several bugs that I had.

Thanks


Top 
 Post subject:
 Post Posted: Mon Mar 05, 2012 9:20 am 
Offline
Level 2
Level 2

Joined: Wed Feb 29, 2012 7:35 pm
Posts: 35
This is the error in ntoskrnl.exe make all

make[1]: Entering directory `/home/hiphop/extra/cd-linux/wine/wine-1.4-rc6/dlls/ntoskrnl.exe'
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wempty-body -Wignored-qualifiers -Wstrict-prototypes -Wtype-limits -Wunused-but-set-parameter -Wwrite-strings -fno-omit-frame-pointer -Wpointer-arith -Wlogical-op -I/usr/include/freetype2 -g -O2 -o instr.o instr.c
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wempty-body -Wignored-qualifiers -Wstrict-prototypes -Wtype-limits -Wunused-but-set-parameter -Wwrite-strings -fno-omit-frame-pointer -Wpointer-arith -Wlogical-op -I/usr/include/freetype2 -g -O2 -o ntoskrnl.o ntoskrnl.c
ntoskrnl.c: In function ‘process_ioctl’:
ntoskrnl.c:489:24: warning: variable ‘irpsp’ set but not used [-Wunused-but-set-variable]
ntoskrnl.c: In function ‘IoGetDeviceProperty’:
ntoskrnl.c:1576:9: error: ‘union generic_reply’ has no member named ‘get_device_name_reply’
make[1]: ** [ntoskrnl.o] Error 1
make[1]: Leaving directory `/home/hiphop/extra/cd-linux/wine/wine-1.4-rc6/dlls/ntoskrnl.exe'
make: ** [dlls/ntoskrnl.exe] Error 2


Top 
 Post subject: Hello
 Post Posted: Mon Mar 05, 2012 11:23 am 
Offline
Level 3
Level 3

Joined: Sun Oct 02, 2011 6:47 pm
Posts: 62
I don't know how to help you, sadly. However, I will be watching this thread to see if you manage to get it working. USB support for Wine is a MUST..Well it is in my world anyway :P


Top 
 Post subject: USB Wine support patch
 Post Posted: Mon Mar 05, 2012 11:27 am 
 
On Mon, Mar 5, 2012 at 9:21 AM, faelmc <wineforum-user@winehq.org> wrote:
Quote:
This is the error in ntoskrnl.exe make all

make[1]: Entering directory `/home/hiphop/extra/cd-linux/wine/wine-1.4-rc6/dlls/ntoskrnl.exe'
gcc -c -I. -I. -I../../include -I../../include  -D__WINESRC__  -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wempty-body -Wignored-qualifiers -Wstrict-prototypes -Wtype-limits -Wunused-but-set-parameter -Wwrite-strings -fno-omit-frame-pointer -Wpointer-arith -Wlogical-op -I/usr/include/freetype2  -g -O2  -o instr.o instr.c
gcc -c -I. -I. -I../../include -I../../include  -D__WINESRC__  -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wempty-body -Wignored-qualifiers -Wstrict-prototypes -Wtype-limits -Wunused-but-set-parameter -Wwrite-strings -fno-omit-frame-pointer -Wpointer-arith -Wlogical-op -I/usr/include/freetype2  -g -O2  -o ntoskrnl.o ntoskrnl.c
ntoskrnl.c: In function ‘process_ioctl’:
ntoskrnl.c:489:24: warning: variable ‘irpsp’ set but not used [-Wunused-but-set-variable]
ntoskrnl.c: In function ‘IoGetDeviceProperty’:
ntoskrnl.c:1576:9: error: ‘union generic_reply’ has no member named ‘get_device_name_reply’
make[1]: ** [ntoskrnl.o] Error 1
make[1]: Leaving directory `/home/hiphop/extra/cd-linux/wine/wine-1.4-rc6/dlls/ntoskrnl.exe'
make: ** [dlls/ntoskrnl.exe] Error 2


Did you attempt to fix the patch or just try to compile ignoring the
fact that the patch failed to properly apply?

John


Top 
 Post subject:
 Post Posted: Mon Mar 05, 2012 7:48 pm 
Offline
Level 2
Level 2

Joined: Wed Feb 29, 2012 7:35 pm
Posts: 35
John, I tried to compile wine ignoring the error, but it happened to and the error in make all, and do not pass this part of ntoskrnl.exe.

I would like to fix the patch, but I can not do it, I'm a little time in the universe linux.

thank you


Top 
 Post subject: Re: Hello
 Post Posted: Tue Mar 13, 2012 3:47 pm 
Offline
Level 2
Level 2

Joined: Wed Feb 29, 2012 7:35 pm
Posts: 35
ruinairas wrote:
I don't know how to help you, sadly. However, I will be watching this thread to see if you manage to get it working. USB support for Wine is a MUST..Well it is in my world anyway :P


Yes USB is the wine MUST,
Alexander Morozov updated the project, now in compiling wine 1.4 happens without problems.

ftp://ftp.etersoft.ru/pub/people/amorozov/usb/current

Follow the steps in http://wiki.winehq.org/USB and good luck[/url]


Top 
 Post subject: ~~ ~~ ~~
 Post Posted: Tue Mar 13, 2012 4:39 pm 
Offline
Newbie
Newbie

Joined: Tue Mar 13, 2012 4:53 am
Posts: 1
Location: Guyana
fantastico !


Top 
 Post subject: USB support in 1.5.5
 Post Posted: Sat Jun 02, 2012 8:23 pm 
Offline
Newbie
Newbie

Joined: Thu Nov 12, 2009 5:45 pm
Posts: 2
Location: Warminster, PA, U.S.A.
I tried to ftp the patches from etersoft but the server disconnects repeatedly. Is there any other way to get USB support? I'm running on a dual boot (opensuse 12.1 and WinDoze XP), so I can switch OS to run, but I really don't like to.


Top 
 Post subject:
 Post Posted: Sun Jun 03, 2012 9:27 am 
Offline
Moderator
Moderator
User avatar

Joined: Wed May 14, 2008 11:44 am
Posts: 1117
I was able to download the patches just now. Try again.


Top 
 Post Posted: Tue Aug 07, 2012 4:16 am 
Offline
Newbie
Newbie

Joined: Tue Aug 07, 2012 4:15 am
Posts: 1
DanKegel wrote:
I was able to download the patches just now. Try again.


CANT! :evil:


Top 
 Post Posted: Wed Aug 08, 2012 8:51 am 
Offline
Moderator
Moderator
User avatar

Joined: Wed May 14, 2008 11:44 am
Posts: 1117
I mirrored his current version (for 1.5.7) here, maybe that will help:
http://kegel.com/wine/usb/


Top 
 Post Posted: Tue Aug 21, 2012 5:58 am 
Offline
Newbie
Newbie

Joined: Tue Aug 21, 2012 5:48 am
Posts: 1
Does somebody know, why there are no more patches since 1.5.7? I hoped this would occur, if they'd been acquired upstream, but I haven't noticed that.


Top 
 Post Posted: Wed Jan 09, 2013 3:26 pm 
Offline
Newbie
Newbie

Joined: Fri Sep 03, 2010 3:44 pm
Posts: 3
Haven't seen any sign that USB is enabled in Wine yet, I think it's more like the development has stalled over the past 6 or so months. I was just hoping to see this working before WinXP support ended, so that I could move a couple USB-needing applications to Wine (so I don't have to hunt down multiple copies of Win7 to replace my XP setups).


Top 
 Post Posted: Mon Mar 11, 2013 5:07 pm 
Offline
Newbie
Newbie

Joined: Mon Mar 11, 2013 5:04 pm
Posts: 1
I've found this, but not tried yet.

https://launchpad.net/~yoalieh/+archive/wine-pulse-usb


Top 
Display posts from previous:  Sort by  
 
 Page 1 of 1 [ 14 posts ] 




Board index » WineHQ » Wine Help


Who is online

Users browsing this forum: No registered users and 2 guests

 
 

 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to: