Re: [uClinux-dev] How to add a package into uclinux base outside ?

2008-10-21 Thread Michael Schnell
In other word, the new source package is not in the uclinux-dist/, but when "make menuconfig", user can select the new module, and after building, new binaries would be included by the userland image. I simply use a dir somewhere on the disk and put a symlink to same in the appropriate posi

RE: [uClinux-dev] How to add a package into uclinux base outside ?

2008-10-21 Thread Frédéric DUBOIS
You can make a symbolic link from uClinux-dist/user/ to your source tree, or you can move only your makefile to uClinux-dist/user/ If you only want your binary package be included in a romfs for instance, you can invoke the toolchain that you use to compile your kernel to compile your program, a

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

2008-10-21 Thread Michael Schnell
Thanks a lot ! I should take a look at the great blackfin docs more often ! -Michael ___ uClinux-dev mailing list uClinux-dev@uclinux.org http://mailman.uclinux.org/mailman/listinfo/uclinux-dev This message was resent by uclinux-dev@uclinux.org To unsub

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

2008-10-21 Thread Michael Schnell
Thanks tor these answers ! -Michael ___ uClinux-dev mailing list uClinux-dev@uclinux.org http://mailman.uclinux.org/mailman/listinfo/uclinux-dev This message was resent by uclinux-dev@uclinux.org To unsubscribe see: http://mailman.uclinux.org/mailman/op

Re: [uClinux-dev] LCDtxt(lcd_16207.c) selection in menuconfig of Kernel 2.6.x

2008-10-21 Thread Thomas Chou
Hi Yuan-Lung Li, Please remove the depends on NIOS line in the file linux-2.6.x/drivers/char/Kconfig config NIOS_LCD_16207 bool "Nios LCD 16207 device support" - depends on NIOS || NIOS2 help This driver supports the Nios LCD 16207 device. Cheer, Thomas __

[uClinux-dev] How to add a package into uclinux base outside ?

2008-10-21 Thread Arthur Wong
Hello everyone: I want to add a package into the uclinux, but i do not want to move the source directory to user/, so is there a way to add a package base outside ? In other word, the new source package is not in the uclinux-dist/, but when "make menuconfig", user can select the new module, and a

[uClinux-dev] LCDtxt(lcd_16207.c) selection in menuconfig of Kernel 2.6.x

2008-10-21 Thread Yuan-Lung Li
Dear all, I am confusing about the lcdtxt selection in the menuconfig. I want to implement a simple lcdtxt driver base on the source lcd_16207.c, but I can not find the enable option in the menucofig of Kernel 2.6.x. Anyone knows how to enable it? Vender(GDB) Product(ARMulator) Kernel version(2.6.

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

2008-10-21 Thread Greg Ungerer
Hi Michael, Michael Schnell wrote: it doesn't matter whether you are ELF/flat/fdpic Why is flat used for _some_ architectures and not for others ? What are the advantages of flat over ELF and vice versa ? (In fact I don't know exactly what "flat" means ;) ) FLAT format was the first native ex

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

2008-10-21 Thread Mike Frysinger
On Tuesday 21 October 2008, Jamie Lokier wrote: > Btw, in most cases exit() should not be called in a *fork* child > either, let alone *vfork*. It will flush stdio buffers - and they may > get flushed by the parent when it exits too. Same for atexit() > handlers. > > Often if there's an exit() in

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

2008-10-21 Thread Jamie Lokier
Mike Frysinger wrote: > 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); > > > > > > > > > >

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

2008-10-21 Thread David McCullough
Jivin Michael Schnell lays it down ... > > >uClinux is just "linux" with some extras, nothing is taken out, so you > >are just using a regular linux kernel :-) > > So the general paradigm has change once more (or less) than I was aware of. > > Originally the was "Microcontroller Linux" later it

Re: [uClinux-dev] Loading uclinux image by hand

2008-10-21 Thread Michael Schnell
I'm working with an embeded system. I'm sure you know about the microprocessor NIOS2. Welcome aboard ! uCLinux questions for NIOS project are best handled in the NIOSForum ( http://www.niosforum.com/ ) or in the NIOS uCLinux mailing list. I would like to know how to load the kernel image (u

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

2008-10-21 Thread Michael Schnell
it doesn't matter whether you are ELF/flat/fdpic Why is flat used for _some_ architectures and not for others ? What are the advantages of flat over ELF and vice versa ? (In fact I don't know exactly what "flat" means ;) ) -Michael ___ uClinux-dev m

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

2008-10-21 Thread Michael Schnell
uClinux is just "linux" with some extras, nothing is taken out, so you are just using a regular linux kernel :-) So the general paradigm has change once more (or less) than I was aware of. Originally the was "Microcontroller Linux" later it was "MMU-less Linux" and now it's "Linux for Fir