[uClinux-dev] FCGI

2010-01-06 Thread Michael Schnell
I'd like to do a Fast CGI application on a uCLinux-dist created system. For normal CGI I successfully use boa as a web server. Does boa support FCGI (I did not find any notice of that) If boa does not support FCGI, what other light weight web server can be used for FCGI ? I found a notice that

[uClinux-dev] newbie questions

2010-01-06 Thread Martin Mensch
Hello, I am interested in using uCLinux and now there are a number of question I couldn't find an answer for on uclinux.org: - how much is the footprint in Flash and RAM for an ARM7TDMI or a PIC32? Is there any chance to do it with a single chip micro using only internal flash and RAM (as far

[uClinux-dev] [PATCH 1/4] FDPIC: Respect PT_GNU_STACK exec protection markings when creating NOMMU stack

2010-01-06 Thread David Howells
From: Mike Frysinger vap...@gentoo.org The current code will load the stack size and protection markings, but then only use the markings in the MMU code path. The NOMMU code path always passes PROT_EXEC to the mmap() call. While this doesn't matter to most people whilst the code is running, it

[uClinux-dev] [PATCH 2/4] NOMMU: Avoiding duplicate icache flushes of shared maps

2010-01-06 Thread David Howells
From: Mike Frysinger vapier@gmail.com When working with FDPIC, there are many shared mappings of read-only code regions between applications (the C library, applet packages like busybox, etc.), but the current do_mmap_pgoff() function will issue an icache flush whenever a VMA is added to an

[uClinux-dev] [PATCH 4/4] elf_fdpic_core_dump(): fix build break in 2.6.33-rc1

2010-01-06 Thread David Howells
From: Daisuke HATAYAMA d.hatay...@jp.fujitsu.com Commit f6151dfea21496d43dbaba32cfcd9c9f404769bc causes ELF-FDPIC to break during building, so this patch fixes it together with a correction for the printk format. Signed-off-by: Daisuke HATAYAMA d.hatay...@jp.fujitsu.com Reviewed-by: Masami

[uClinux-dev] Re: [PATCH 4/4] elf_fdpic_core_dump(): fix build break in 2.6.33-rc1

2010-01-06 Thread Paul Mundt
On Wed, Jan 06, 2010 at 05:23:33PM +, David Howells wrote: From: Daisuke HATAYAMA d.hatay...@jp.fujitsu.com Commit f6151dfea21496d43dbaba32cfcd9c9f404769bc causes ELF-FDPIC to break during building, so this patch fixes it together with a correction for the printk format.

[uClinux-dev] [PATCH 3/4] NOMMU: Use copy_*_user_page() in access_process_vm()

2010-01-06 Thread David Howells
From: Jie Zhang jie.zh...@analog.com The MMU code uses the copy_*_user_page() variants in access_process_vm() rather than copy_*_user() as the former includes an icache flush. This is important when doing things like setting software breakpoints with gdb. So switch the NOMMU code over to do the

RE: [uClinux-dev] newbie questions

2010-01-06 Thread Gary Altenberg
If you want to work on windows you can use a virtual machine like VMWARE. I know Embedded Artists supply a complete VMWARE setup that allows you to develop under Windows via the virtual machine. I would warn that unless you have a nice fast clean windows machine it may run kind of slow. It's

Re: SPAM-LOW: [uClinux-dev] newbie questions

2010-01-06 Thread g...@novadsp.com
Hello Martin Re your first question if you are looking to use uCLinux then pick a suitable processor. Unless the hardware budget is very, very, very tight you will save endless amounts of time, energy, thus money using a processor with suitable hardware resources. You'll get excellent and

Re: [uClinux-dev] newbie questions

2010-01-06 Thread Philip Nye
Lennart Sorensen wrote: ... We have a board using a coldfire 5270 with 8MB ram and 4MB flash, and that works fine. I have a similar setup with Coldfire 5272 and only 2MB flash which works OK. As is common, my kernel and file system are kept in comppressed form in flash and unpacked into RAM

Re: SPAM-LOW: [uClinux-dev] newbie questions

2010-01-06 Thread Lennart Sorensen
On Wed, Jan 06, 2010 at 06:53:30PM +, g...@novadsp.com wrote: Hello Martin Re your first question if you are looking to use uCLinux then pick a suitable processor. Unless the hardware budget is very, very, very tight you will save endless amounts of time, energy, thus money using a

Re: [uClinux-dev] newbie questions

2010-01-06 Thread Lennart Sorensen
On Wed, Jan 06, 2010 at 07:18:41PM +, Philip Nye wrote: Lennart Sorensen wrote: ... We have a board using a coldfire 5270 with 8MB ram and 4MB flash, and that works fine. I have a similar setup with Coldfire 5272 and only 2MB flash which works OK. As is common, my kernel and file

Re: SPAM-LOW: [uClinux-dev] newbie questions

2010-01-06 Thread Philip Nye
Engineering Arts 72 Herberton Road * Bournemouth * BH6 5HZ * United Kingdom tel +44 (0)1202 418236 * mobile +44 (0)7968 183657 Lennart Sorensen wrote: On Wed, Jan 06, 2010 at 06:53:30PM +, g...@novadsp.com wrote: Hello Martin Re your first question if you are looking to use uCLinux

Re: [uClinux-dev] newbie questions

2010-01-06 Thread Philip Nye
Philip Nye wrote: Engineering Arts... Well that didn't work well - here is the post I thought I'd sent: Lennart Sorensen wrote: On Wed, Jan 06, 2010 at 06:53:30PM +, g...@novadsp.com wrote: Hello Martin Re your first question if you are looking to use uCLinux then pick a suitable

[uClinux-dev] Re: [PATCH 4/4] elf_fdpic_core_dump(): fix build break in 2.6.33-rc1

2010-01-06 Thread David Howells
Linus Torvalds torva...@linux-foundation.org wrote: So a strong NAK to this patch. Okay, forget that one then. Can you take the others? David ___ uClinux-dev mailing list uClinux-dev@uclinux.org

Re: [uClinux-dev] [PATCH] nommu: implement vmap/vunmap with kmalloc

2010-01-06 Thread Mike Frysinger
On Mon, Dec 21, 2009 at 11:44, Mike Frysinger wrote: git-svn-id: svn://localhost/svn/linux-kernel/tr...@7693 526b6c2d-f592-4532-a319-5dd88ccb003d blah, didnt realize i still had this crap. drop the changelog and add: Signed-off-by: Mike Frysinger vap...@gentoo.org -mike