[uClinux-dev] Re: Hi all, how could I check if my compiler use fpu instruction?

2008-01-29 Thread Fabio Giovagnini
Sorry Paul, sorry everybody. When I'm tierd I'm not so smart. Thanks a lot for the answer. arch/sh/Makefile is related to kernel tree, rigth? Thanks and sorry again. Alle 01:49, martedì 29 gennaio 2008, Paul Mundt ha scritto: It is incredibly difficult to reply to your mail when you insist

[uClinux-dev] Re: [PATCH] [NET]: Remove PowerPC code from fec.c

2008-01-29 Thread Greg Ungerer
-- Forwarded message -- Date: Fri, 25 Jan 2008 15:33:45 +0100 From: Jochen Friedrich [EMAIL PROTECTED] To: Garzik, Jeff [EMAIL PROTECTED] Cc: Vitaly Bordug [EMAIL PROTECTED], Scott Wood [EMAIL PROTECTED], Kumar Gala [EMAIL PROTECTED], Geert Uytterhoeven [EMAIL

[uClinux-dev] Blackfin uClinux Spring 2008 Training USA and Europe

2008-01-29 Thread Phil Wilshire
Hi All, Once Again please forgive the occasional commercial. Spring 2008 Blackfin uClinux Training = SDCS is offering two public uClinux Spring Training Classes one in Norwood, MA, USA (March 11th-14th, 2008), the other in Breda, The Netherlands (April

[uClinux-dev] [patch] fix parallel build failure in net-tools subdir

2008-01-29 Thread Mike Frysinger
if you build user/net-tools/ in parallel, there is a subtle race condition having to do with the lib subdir. the makefile is allowed to `make -C lib` either via the libdir or the subdir target. if both get processed at the same time, you end up with two makes fighting each other. this patch

[uClinux-dev] [patch] make lib/Makefile nicer to external peeps

2008-01-29 Thread Mike Frysinger
This patch extends the default lib number to 9 and pulls in Makefile.local if it exists. This allows people to keep local changes in Makefile.local without having to touch the Makefile which makes syncing with newer versions much easier. Signed-off-by: Mike Frysinger [EMAIL PROTECTED] --- ---

[uClinux-dev] the top level %_default does not properly regenerate supplemental files

2008-01-29 Thread Mike Frysinger
if you do something like: $make vendor/board_default $ rm -f config/autoconf.h $ make vendor/board_default the autoconf.h header wont be properly regenerated. yes, this is a silly test case, but i managed to come across this is a non-silly manner, i just cant recall the exact steps at the

Re: [uClinux-dev] [patch] make lib/Makefile nicer to external peeps

2008-01-29 Thread David McCullough
Jivin Mike Frysinger lays it down ... This patch extends the default lib number to 9 and pulls in Makefile.local if it exists. This allows people to keep local changes in Makefile.local without having to touch the Makefile which makes syncing with newer versions much easier.

[uClinux-dev] [patch] fix building on systems w/out gettext/libintl

2008-01-29 Thread Mike Frysinger
This patch takes changes from newer kconfig and tweaks the local kconfig Makefile so that it builds properly on systems that lack gettext/libintl (like OS X). Signed-off-by: Mike Frysinger [EMAIL PROTECTED] --- --- config/kconfig/check.sh +++ config/kconfig/check.sh @@ -0,0 +1,14 @@ +#!/bin/sh +#

Re: [uClinux-dev] [PATCH] nios2: build systems without cfi flash

2008-01-29 Thread Greg Ungerer
Hi Thom, Thomas Chou wrote: As cfi flash and romfs are not required when we run initramfs,the dependency of cfi flash is cleaned. Signed-off-by: Thomas Chou [EMAIL PROTECTED] Applied, thanks. Regards Greg linux-2.6.x/arch/nios2nommu/kernel/asm-offsets.c |2 --

[uClinux-dev] [patch] new romfs-inst.sh option (-M) for installing kernel modules

2008-01-29 Thread Mike Frysinger
This allows people to install kernel modules from the dist by using the -M option. For example: $(ROMFSINTS) -M local/path/to/kern.ko subdir/kern.ko This will install kern.ko into the appropriate place under the romfs dir: /lib/modules/kernel version/subdir/kern.ko Signed-off-by: Mike Frysinger

Re: [uClinux-dev] [patch] new romfs-inst.sh option (-M) for installing kernel modules

2008-01-29 Thread David McCullough
Jivin Mike Frysinger lays it down ... This allows people to install kernel modules from the dist by using the -M option. For example: $(ROMFSINTS) -M local/path/to/kern.ko subdir/kern.ko This will install kern.ko into the appropriate place under the romfs dir: /lib/modules/kernel

Re: [uClinux-dev] [patch] new romfs-inst.sh options (-E/-O) to provide opposite behavior of -e/-o

2008-01-29 Thread David McCullough
Jivin Mike Frysinger lays it down ... This adds support for two new options (-E/-O) which complement the existing -e/-o options by providing negative versions of them. For example, while -e VAR means only do stuff when VAR is set to y, -E var means only do stuff when VAR is not set to y.