Re: [Barry-devel] bjavaloader works great!

2009-01-31 Thread Chris Frey
On Fri, Jan 30, 2009 at 04:49:37PM -0800, Dirt Dawg wrote: > Hi, I just wanted to confirm to you all that bjavaloader works great! > I made a fresh build of Barry just today and the new bjavaloader erase > command worked flawlessly! You've made me a happy man. Thanks for the report! > P.S. If it

Re: [Barry-devel] stuck trying to implement get eventlog in javaloader

2009-01-31 Thread Chris Frey
On Sat, Jan 31, 2009 at 02:02:53AM -0500, Josh Kropf wrote: > To get log entries the command 7400 0200 is used. This time there is > no JL_ACK response, but instead, another write occurs which just has > a 16 bit integer value which increments and starts from zero. > Following this is the JL_ACK a

Re: [Barry-devel] Linux 2.6.28: error submitting URB: No such file or directory

2009-01-31 Thread Chris Frey
On Sat, Jan 31, 2009 at 12:55:26PM +1100, Jason Thomas wrote: > Hi Chris, > > The kernel configs are different and below is a diff. Hi Jason, I took a quick look at the diff, but I didn't see anything that rang any bells for me, but I'm not a kernel guru either. The most suspicious change to me

Re: [Barry-devel] Linux 2.6.28: error submitting URB: No such file or directory

2009-01-31 Thread Chris Frey
On Sat, Jan 31, 2009 at 04:55:22AM -0500, Chris Frey wrote: > On Sat, Jan 31, 2009 at 12:55:26PM +1100, Jason Thomas wrote: > > Hi Chris, > > > > The kernel configs are different and below is a diff. > > Hi Jason, > > I took a quick look at the diff, but I didn't see anything that rang > any bel

Re: [Barry-devel] Barry OpenSync plugin alpha

2009-01-31 Thread Chris Frey
On Fri, Jan 30, 2009 at 10:06:24AM -0700, Nathanael Noblet wrote: > I would love to test this, however I'm getting a bit lost in what to > download. Could a snapshot system be setup so I could easily grab the 0.40 > alpha version to compile and test? Hi Nathanael, Thanks very much for the offer t

Re: [Barry-devel] [patch] documentation for VSM files

2009-01-31 Thread Chris Frey
On Thu, Jan 29, 2009 at 10:29:56PM -0600, Robert Yaklin wrote: > Thanks Chris, > I went ahead and installed git since making a patch with it looked > less involved than with cvs. I believe the attached patch will work. > I'll get the hang of this yet :) That was a beautiful patch. :-) Applied. M

[Barry-devel] binary package updates and OBS snapshot

2009-01-31 Thread Chris Frey
see Chris Stover has already added fuse to his packages... he's on the ball! :-) This is a heads-up for anyone else who is following my package scripts. Due to the new FUSE dependencies, the new 0.15-20090131 snapshot is not available for the following distros, which don't have FUSE

Re: [Barry-devel] Barry OpenSync plugin alpha

2009-01-31 Thread Nicolas
Hi, The opensync-plugin 0.4x isn't still usable :( The plugin can be built, but after a first test I can list it : msynctool --listplugins don't see the plugin :( If you checkout the opensync-0.4x branch, you have to apply this patch to solve the compilation issue : diff --git a/opensync-plugin

Re: [Barry-devel] stuck trying to implement get eventlog in javaloader

2009-01-31 Thread Josh Kropf
On Sat, 31 Jan 2009 04:44:12 -0500 Chris Frey wrote: > SimpleCmd() gives the command, and the amount of data to follow in the > next data packet (2). The data is given as a uint16_t big endian value. > The combination of the two, creates a JLPacket object with two chunks > of data to send. > >

Re: [Barry-devel] further testing with fc10/8120/tmobileus...

2009-01-31 Thread Andy Herkey
Dave Booth wrote: Just an update on this issue - tried it again after grabbing the latest 8120 device software, in case there was a bug there. A bit of a forlorn hope since it was already working on windows and so it proved. Results identical with bb device software v4.5.0.124. Dave. Dave,

[Barry-devel] Barry OpenSync for developper

2009-01-31 Thread Nicolas
Hi, First, I have packaged OpenSync Trunk today (for debian) : http://www.progweb.com/modules/blackberry/opensync/ Then, I have ported opensync barry plugin for this last snapshot : http://www.progweb.com/modules/blackberry/opensync-plugin/ Thank's to apply this patch on opensync-0.4x branch. I

[Barry-devel] [PATCH] get eventlog and clear eventlog for bjavaloader

2009-01-31 Thread Josh Kropf
Here is a patch that implements "eventlog" and "cleareventlog" commands. One thing: I put enum definitions in a class called JLEventlogEntry... is there another more appropriate place for these? -- Josh Kropf eventlog_dump_and_clear.patch Description: Binary data -

Re: [Barry-devel] javaloader erase

2009-01-31 Thread Josh Kropf
On Thu, 29 Jan 2009 21:08:39 -0500 Chris Frey wrote: > I added javaloader erase support tonight, and an experimental implementation > of force erase. I assumed this would erase an application even while it > was open and running on the Blackberry, but it didn't for me. Perhaps > I'm misundersta

Re: [Barry-devel] javaloader erase

2009-01-31 Thread Josh Kropf
On Sun, 1 Feb 2009 00:24:23 -0500 Josh Kropf wrote: > In fact if you look at > erase-error-inuse.usb you will see that the handheld responds with 0x6c > when attempting to erase an in use module without sending the force > erase command. Silly me I just noticed you are already handling this resp

[Barry-devel] Use C++ iostream classes for public methods that receive data?

2009-01-31 Thread Josh Kropf
I was just working on the save module command in bjavaloader and I have a question regarding all the public methods in JavaLoader class that deal with file data (load, screenshot, save). Does it make sense to use the standard C++ iostream classes for these methods instead of the Berry Data class?