[uClinux-dev] patch file for the e2fsprogs app of uClinux-dist-20080808.tar.bz2

2008-10-20 Thread Arthur Wong
Hello! When build the e2fsprogs of uClinux-dist-20080808, i have met some errors, 3 files were changed to fix them: * user/e2fsprogs/misc/logsave.c - all fork should be changed as vfork * e2fsprogs/makefile link problem in the romfs directory *

[uClinux-dev] uClinux kernel version 2.6

2008-10-20 Thread Loren A. Linden Levy
Hi All, I cannot find the 2.6 kernel version in CVS: http://cvs.uclinux.org/cgi-bin/cvsweb.cgi/ can someone point me to it? Thanks. Alex -- -- - Loren A. Linden Levy Department of Physics 390 UCB University of Colorado Boulder, CO 80309-0390

[uClinux-dev] Loading uclinux image by hand

2008-10-20 Thread Ivan Llopard
Hi list, I'm working with an embeded system. I'm sure you know about the microprocessor NIOS2. I would like to know how to load the kernel image (uclinux) in memory correctly by hand, i mean without u-boot or else, or where can i find some information about it. I got the image of uclinux kernel in

Re: [uClinux-dev] patch file for the e2fsprogs app of uClinux-dist-20080808.tar.bz2

2008-10-20 Thread Jamie Lokier
Mike Frysinger wrote: @@ -237,9 +237,9 @@ int main(int argc, char **argv) send_output(\n, 0, send_flag); if (outbuf) { -pid = fork(); +pid = vfork(); if (pid 0) { -perror(fork); +perror(vfork);

Re: [uClinux-dev] patch file for the e2fsprogs app of uClinux-dist-20080808.tar.bz2

2008-10-20 Thread Chris Gray
On Monday 20 October 2008 19:23, Jamie Lokier wrote: Mike Frysinger wrote: @@ -237,9 +237,9 @@ int main(int argc, char **argv) send_output(\n, 0, send_flag); if (outbuf) { -pid = fork(); +pid = vfork(); if (pid 0) { -

Re: [uClinux-dev] patch file for the e2fsprogs app of uClinux-dist-20080808.tar.bz2

2008-10-20 Thread Jun Sun
See question below. On Mon, Oct 20, 2008 at 09:39:46AM -0400, Mike Frysinger wrote: On Monday 20 October 2008, Arthur Wong wrote: --- user/e2fsprogs.bak/configure2008-10-20 17:32:45.0 +0800 +++ user/e2fsprogs/configure2008-10-20 17:44:57.0 +0800 @@ -3076,7 +3076,7

Re: [uClinux-dev] patch file for the e2fsprogs app of uClinux-dist-20080808.tar.bz2

2008-10-20 Thread David McCullough
Jivin Jun Sun lays it down ... See question below. On Mon, Oct 20, 2008 at 09:39:46AM -0400, Mike Frysinger wrote: On Monday 20 October 2008, Arthur Wong wrote: --- user/e2fsprogs.bak/configure2008-10-20 17:32:45.0 +0800 +++ user/e2fsprogs/configure2008-10-20

Re: [uClinux-dev] patch file for the e2fsprogs app of uClinux-dist-20080808.tar.bz2

2008-10-20 Thread Jun Sun
On Tue, Oct 21, 2008 at 08:49:54AM +1000, David McCullough wrote: Jivin Jun Sun lays it down ... See question below. On Mon, Oct 20, 2008 at 09:39:46AM -0400, Mike Frysinger wrote: On Monday 20 October 2008, Arthur Wong wrote: --- user/e2fsprogs.bak/configure2008-10-20

[uClinux-dev] memory footprint

2008-10-20 Thread Pawel
Hi, I've OLIMIX LPC-H22xx (LPC2294) with 4MB exteranl flash and 512kB of exteranl RAM. Would uClinux run on that or should I change RAM? ___ uClinux-dev mailing list uClinux-dev@uclinux.org http://mailman.uclinux.org/mailman/listinfo/uclinux-dev This

Re: [uClinux-dev] memory footprint

2008-10-20 Thread Jun Sun
Looks to me it should run with XIP, although the RAM would be very tight and you probably won't be able to do much in userland. Cheers. Jun On Tue, Oct 21, 2008 at 01:53:00AM +0200, Pawel wrote: Hi, I've OLIMIX LPC-H22xx (LPC2294) with 4MB exteranl flash and 512kB of exteranl RAM. Would

Re: [uClinux-dev] patch file for the e2fsprogs app of uClinux-dist-20080808.tar.bz2

2008-10-20 Thread David McCullough
Jivin Jun Sun lays it down ... On Tue, Oct 21, 2008 at 08:49:54AM +1000, David McCullough wrote: Jivin Jun Sun lays it down ... See question below. On Mon, Oct 20, 2008 at 09:39:46AM -0400, Mike Frysinger wrote: On Monday 20 October 2008, Arthur Wong wrote: ---

Re: [uClinux-dev] memory footprint

2008-10-20 Thread David McCullough
Jivin Pawel lays it down ... Hi, I've OLIMIX LPC-H22xx (LPC2294) with 4MB exteranl flash and 512kB of exteranl RAM. Would uClinux run on that or should I change RAM? To do anything useful you will almost certainly want more RAM. Still, it all comes down to what you want to do, if you

Re: [uClinux-dev] uClinux kernel version 2.6

2008-10-20 Thread Greg Ungerer
Hi Loren, Loren A. Linden Levy wrote: I cannot find the 2.6 kernel version in CVS: http://cvs.uclinux.org/cgi-bin/cvsweb.cgi/ can someone point me to it? Thanks. There isn't one for 2.6 kernels. I have only been issuing patches against each 2.6 kernel release. (And then trying hard to push

Re: [uClinux-dev] memory footprint

2008-10-20 Thread Jim Donelson
I think he does. Those ram chips are by 16 and there are 4 of them = 1M Byte. On Mon, Oct 20, 2008 at 8:45 PM, David McCullough [EMAIL PROTECTED] wrote: Jivin Pawel lays it down ... Hi, I've OLIMIX LPC-H22xx (LPC2294) with 4MB exteranl flash and 512kB of exteranl RAM. Would uClinux run

Re: [uClinux-dev] patch file for the e2fsprogs app of uClinux-dist-20080808.tar.bz2

2008-10-20 Thread Arthur Wong
2008/10/20 Mike Frysinger [EMAIL PROTECTED] On Monday 20 October 2008, Arthur Wong wrote: --- user/e2fsprogs.bak/configure2008-10-20 17:32:45.0 +0800 +++ user/e2fsprogs/configure2008-10-20 17:44:57.0 +0800 @@ -3076,7 +3076,7 @@ if test ${with_ldopts+set} = set; then

Re: [uClinux-dev] patch file for the e2fsprogs app of uClinux-dist-20080808.tar.bz2

2008-10-20 Thread Mike Frysinger
On Monday 20 October 2008, Arthur Wong wrote: 2008/10/20 Mike Frysinger [EMAIL PROTECTED] On Monday 20 October 2008, Arthur Wong wrote: --- user/e2fsprogs.bak/configure2008-10-20 17:32:45.0 +0800 +++ user/e2fsprogs/configure2008-10-20 17:44:57.0 +0800 @@ -3076,7

Re: [uClinux-dev] patch file for the e2fsprogs app of uClinux-dist-20080808.tar.bz2

2008-10-20 Thread Mike Frysinger
On Monday 20 October 2008, Chris Gray wrote: On Monday 20 October 2008 19:23, Jamie Lokier wrote: Mike Frysinger wrote: @@ -237,9 +237,9 @@ int main(int argc, char **argv) send_output(\n, 0, send_flag); if (outbuf) { -pid = fork(); +

Re: [uClinux-dev] patch file for the e2fsprogs app of uClinux-dist-20080808.tar.bz2

2008-10-20 Thread Mike Frysinger
On Monday 20 October 2008, David McCullough wrote: Jivin Jun Sun lays it down ... On Tue, Oct 21, 2008 at 08:49:54AM +1000, David McCullough wrote: Jivin Jun Sun lays it down ... On Mon, Oct 20, 2008 at 09:39:46AM -0400, Mike Frysinger wrote: On Monday 20 October 2008, Arthur Wong

Re: [uClinux-dev] patch file for the e2fsprogs app of uClinux-dist-20080808.tar.bz2

2008-10-20 Thread David McCullough
Jivin Mike Frysinger lays it down ... On Monday 20 October 2008, David McCullough wrote: Jivin Jun Sun lays it down ... On Tue, Oct 21, 2008 at 08:49:54AM +1000, David McCullough wrote: Jivin Jun Sun lays it down ... On Mon, Oct 20, 2008 at 09:39:46AM -0400, Mike Frysinger wrote: