[OpenWrt-Devel] [PATCH] netatalk support for Darwin 10.7 (Mac OS X Lion)

2011-07-11 Thread Roback, Joe
In order for Mac OS X 10.7 to authenticate with netatalk, netatalk needs DHX2 support (10.6 and earlier worked without DHX2, 10.7 requires it). Netatalk needs libgcrypt compiled with CAST5 cipher, and in turn libgcrypt needs libgpg-error >= 1.8 for CAST5. The following patches update all that is

Re: [OpenWrt-Devel] Next error with glibc...

2011-06-17 Thread Roback, Joe
I think the key piece of information here is See `config.log' for more details. You might get some better help posting the details of the error ;-) Joe On Fri, 17 Jun 2011 14:38:08 -0400, Pawel Pastuszak wrote: Hi Gents, Any thoughts on this, Again i using the glibc 2.6.1 and gcc 4.4.5

Re: [OpenWrt-Devel] [OFF-TOPIC] Unix networking programming

2011-06-05 Thread Roback, Joe
Anything by W. Richard Stevens, especially "UNIX Network Programming, Volume 1, Second Edition: Networking APIs: Sockets and XTI" http://www.kohala.com/start/unpv12e.html Regards, Joe On Jun 5, 2011, at 7:00 AM, scolfield wrote: > Hi all, > > I know that there are many good programmers and w

[OpenWrt-Devel] [PATCH] transmission init.d script to set ulimit for open files based on open_file_limit configuration parameter

2011-03-05 Thread Roback, Joe
Hello. Currently, transmission daemon allows you to set the max number of open files, but it can be more than allowed by the system, thus resulting in errors if transmission uses more than set in ulimit. The following is a patch to compare ulimit vs open_file_limit from /etc/config/transmission

Re: [OpenWrt-Devel] r24920 and others: ath9k: DMA failed to stop in 10 ms

2011-01-11 Thread Roback, Joe
I would agree, lately, I am seeing a bunch of these in my logs: ath: Failed to stop TX DMA in 100 msec after killing last frame but my 802.11n 40MHz performance has been the best its been in 6 months ;-) On Tue, 11 Jan 2011 16:35:10 -0600, "J. Ryan Earl" wrote: On Tue, Jan 11, 2011 at 1:

Re: [OpenWrt-Devel] [OpenWrt-Tickets] [OpenWrt] # 8508: trunk build fails in e2fsprogs after r24683

2010-12-31 Thread Roback, Joe
This patch does not solve #8508 original problem. It solves #8552. #8508 is when compiling the *host* e2fsprogs, the host doesn't have posix_memalign(), e.g. Mac OSX 10.5. On Fri, 31 Dec 2010 06:48:38 +0800, HongPeng Tian wrote: The patch resolves target compiling svn diff ./toolchain/uCli

Re: [OpenWrt-Devel] [PATCH] tools/e2fsprogs O_DIRECT fix on Darwin

2010-12-19 Thread Roback, Joe
Submitted to e2fsprogs maintainers ;-) Joe On Dec 19, 2010, at 4:46 AM, Hauke Mehrtens wrote: > On 12/19/2010 05:33 AM, Roback, Joe wrote: >> Hello. >> >> O_DIRECT is undefined on Darwin. To get direct IO on darwin, one can use >> fcntl(fd, F_NOCACHE, 1); Below is

[OpenWrt-Devel] [PATCH] tools/e2fsprogs O_DIRECT fix on Darwin

2010-12-18 Thread Roback, Joe
Hello. O_DIRECT is undefined on Darwin. To get direct IO on darwin, one can use fcntl(fd, F_NOCACHE, 1); Below is a patch to e2fsprogs to use fcntl() on system that don't define O_DIRECT and have F_NOCACHE defined. Made to go in "tools/e2fsprogs/patches/003-darwin_directio_fix.patch" using Qui