Re: [uClinux-dev] [Fwd: convert ld-elf2flt to C program]

2009-07-06 Thread David McCullough
Jivin Mike Frysinger lays it down ... On Monday 06 July 2009 00:24:46 David McCullough wrote: Jivin Mike Frysinger lays it down ... On Wednesday 20 February 2008 19:22:38 David McCullough wrote: If someone wants to have a go at reducing the code size/complexity a bit (or not) and

Re: [uClinux-dev] [PATCH] elf2flt: convert to C

2009-07-06 Thread Michael Schnell
you have to install not only the shell, but also any helper utilities that the script may invoke. currently, that means dirname, expr, grep, mktemp, sed, rm, xargs. see how it gets real ugly real fast ? Is this not what CygWin is all about ? (ugly but workable) -Michael

Re: [uClinux-dev] How to call user function in Device Driver

2009-07-06 Thread Michael Schnell
Vinod Nagare wrote: Dear all, I am using uClinux 2.4 on coldfire CPU board. I have written driver module for a timer interrupt You asked the same question in the NIOSForum ? What is this all about ? -Michael ___ uClinux-dev mailing list

Re: [uClinux-dev] [PATCH] elf2flt: convert to C

2009-07-06 Thread Mike Frysinger
On Monday 06 July 2009 03:58:49 Michael Schnell wrote: you have to install not only the shell, but also any helper utilities that the script may invoke. currently, that means dirname, expr, grep, mktemp, sed, rm, xargs. see how it gets real ugly real fast ? Is this not what CygWin is all

Re: [uClinux-dev] port to Olimex SAM9-L9260 ( boot fsck: fsck.jffs2:not found message)

2009-07-06 Thread Greg Ungerer
Hi Kris, On 07/04/2009 02:13 AM, Microbit_P43000 wrote: Thanks for reviewing. I will absorb the submit patches issue in the near future. Typical - with some further effort, I solved the mysterious fsck.jffs2 puzzle, it was more a matter of looking deeper again into the scripts. Once the

Re: [uClinux-dev] port to Olimex SAM9-L9260 ( boot fsck: fsck.jffs2:not found message)

2009-07-06 Thread Microbit_Ubuntu
On Mon, 2009-07-06 at 18:32 +1000, Greg Ungerer wrote: Hi Kris, On 07/04/2009 02:13 AM, Microbit_P43000 wrote: Thanks for reviewing. I will absorb the submit patches issue in the near future. Typical - with some further effort, I solved the mysterious fsck.jffs2 puzzle, it was more

Re: [uClinux-dev] parallel compiles

2009-07-06 Thread David McCullough
Jivin Mike Frysinger lays it down ... On Wednesday 06 February 2008, David McCullough wrote: is there a reason for forcing -j1 in sub-packages ? we've dropped the -j1 in {lib,user}/Makefile for the DIRS target and generally had great success. you can really feel the difference on an 8

Re: [uClinux-dev] [PATCH] mkconfig: allow people to control default vendor

2009-07-06 Thread David McCullough
Jivin Mike Frysinger lays it down ... Rather than forcing SECURECOMPUTING as the default vendor, allow people to tweak this locally with a config/vendor-default file. If said file does not exist, then we still get SECURECOMPUTING as the default. Signed-off-by: Mike Frysinger

[uClinux-dev] [PATCH 2/7] cleanup build flag handling

2009-07-06 Thread Mike Frysinger
This cleans up the Makefile handling of the different compiler flags such that it uses standard names across the board as well as unifies the link method. Signed-off-by: Mike Frysinger vap...@gentoo.org --- Makefile.in | 24 +--- 1 files changed, 13 insertions(+), 11

[uClinux-dev] [PATCH 1/7] add more common files to gitignore

2009-07-06 Thread Mike Frysinger
Signed-off-by: Mike Frysinger vap...@gentoo.org --- .gitignore |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index 12b560b..92ff5f6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,15 @@ # standard patterns +*.a *.o *~ *.orig *.rej

[uClinux-dev] [PATCH 4/7] rename local ld-elf2flt to ld-elf2flt.sh

2009-07-06 Thread Mike Frysinger
This allows us to drop in a C version without getting filename conflicts. Signed-off-by: Mike Frysinger vap...@gentoo.org --- .gitignore |1 + Makefile.in | 13 ++-- configure|5 +- configure.in |3 +- ld-elf2flt.in| 239

[uClinux-dev] [PATCH 7/7] ld-elf2flt.sh: handle more strip/verbose options

2009-07-06 Thread Mike Frysinger
Signed-off-by: Mike Frysinger vap...@gentoo.org --- ld-elf2flt.sh.in |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ld-elf2flt.sh.in b/ld-elf2flt.sh.in index fc5064c..8d12a45 100644 --- a/ld-elf2flt.sh.in +++ b/ld-elf2flt.sh.in @@ -53,7 +53,8 @@ then

[uClinux-dev] [PATCH 5/7] unify portability handling and errors

2009-07-06 Thread Mike Frysinger
Unify the duplicated windows and other system fallback logic in stubs.h and add some fatal() helper functions to standardize the error output when falling over. This way we don't end up with obscure error messages with no idea what util they are coming from. Signed-off-by: Mike Frysinger

[uClinux-dev] [PATCH 3/7] generate dependency info automatically

2009-07-06 Thread Mike Frysinger
Signed-off-by: Mike Frysinger vap...@gentoo.org --- Makefile.in |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 148fd38..8b82809 100644 --- a/Makefile.in +++ b/Makefile.in @@ -65,7 +65,7 @@ Makefile: $(srcdir)/Makefile.in

Re: [uClinux-dev] [PATCH 1/7] add more common files to gitignore

2009-07-06 Thread David McCullough
Jivin Mike Frysinger lays it down ... Signed-off-by: Mike Frysinger vap...@gentoo.org applied, Thanks, Davidm --- .gitignore |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index 12b560b..92ff5f6 100644 --- a/.gitignore +++

Re: [uClinux-dev] [PATCH 2/7] cleanup build flag handling

2009-07-06 Thread David McCullough
Jivin Mike Frysinger lays it down ... This cleans up the Makefile handling of the different compiler flags such that it uses standard names across the board as well as unifies the link method. Signed-off-by: Mike Frysinger vap...@gentoo.org Applied, Thanks, Davidm --- Makefile.in |

Re: [uClinux-dev] [PATCH 3/7] generate dependency info automatically

2009-07-06 Thread David McCullough
Jivin Mike Frysinger lays it down ... Signed-off-by: Mike Frysinger vap...@gentoo.org Applied, Thanks, Davidm --- Makefile.in |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 148fd38..8b82809 100644 --- a/Makefile.in +++

[uClinux-dev] [ANNOUNCE] uClinux-dist-20090618 release

2009-07-06 Thread Greg Ungerer
Hi All, I have generated a uClinux-dist-20090618 stable release. You can get it from the usual place, links from the page: http://www.uclinux.org/pub/uClinux/dist/ The files themselves are: http://www.uclinux.org/pub/uClinux/dist/uClinux-dist-20090618.tar.bz2

Re: [uClinux-dev] [PATCH 5/7] unify portability handling and errors

2009-07-06 Thread David McCullough
Jivin Mike Frysinger lays it down ... Unify the duplicated windows and other system fallback logic in stubs.h and add some fatal() helper functions to standardize the error output when falling over. This way we don't end up with obscure error messages with no idea what util they are coming

Re: [uClinux-dev] [PATCH 7/7] ld-elf2flt.sh: handle more strip/verbose options

2009-07-06 Thread David McCullough
Jivin Mike Frysinger lays it down ... Signed-off-by: Mike Frysinger vap...@gentoo.org Applied, Thanks, Davidm --- ld-elf2flt.sh.in |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ld-elf2flt.sh.in b/ld-elf2flt.sh.in index fc5064c..8d12a45 100644 ---