[uClinux-dev] 8.3 filenames on sd card

2009-03-05 Thread Tom Stalcup
Hello, Does anyone know how to format an SD card so that uclinux can read/write filenames greater than 8 characters long? I'm running uclinux on WildFire board from Steroid Micros, which has a MCF5282 processor. No PC in my office is running linux, so I was hoping to find a Windows-based

Re: [uClinux-dev] parallel compiles

2009-03-05 Thread Mike Frysinger
On Thursday 07 February 2008 00:47:13 Mike Frysinger wrote: On Wednesday 06 February 2008, David McCullough wrote: If you have a patch, send it in and I'll try it here and see how bad it is for our builds, if it's relatively isolated I am happy to fix up some bits and include it,

Re: [uClinux-dev] mcfcache patch

2009-03-05 Thread David Wu
On Wed, 04 Mar 2009 01:12:48 -0500, Greg Ungerer g...@snapgear.com wrote: Hi David, David Wu wrote: On Tue, 03 Mar 2009 16:20:10 -0500, Gavin Lambert gav...@compacsort.com wrote: Quoth David Wu: CACHE_ENABLE is defined to nop if CONFIG_UCBOOTLOADER is defined. The cache setting is

[uClinux-dev] [PATCH] put all the benchmarks in the same place and sort them

2009-03-05 Thread Mike Frysinger
Signed-off-by: Mike Frysinger vap...@gentoo.org --- user/Kconfig | 14 +++--- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/user/Kconfig b/user/Kconfig index 7b6947c..6698e6d 100644 --- a/user/Kconfig +++ b/user/Kconfig @@ -2922,11 +2922,6 @@ config USER_CAL_DATE

Re: [uClinux-dev] Does anyone have m68knommu running with current uClibc and gcc 4.3?

2009-03-05 Thread Lennart Sorensen
On Wed, Mar 04, 2009 at 09:38:27AM -0500, Lennart Sorensen wrote: On Wed, Mar 04, 2009 at 04:45:28PM +1000, Greg Ungerer wrote: Given that the initial compile of put.o seems correct it is hard to see how this is an assembler of compiler issues. You are disassembly the final .gdb file, and

[uClinux-dev] [PATCH] allow the prop dir to not exist

2009-03-05 Thread Mike Frysinger
If the prop dir does not actually exist, then don't try to process it. Signed-off-by: Mike Frysinger vap...@gentoo.org --- lib/Makefile |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Makefile b/lib/Makefile index 07655b5..1379432 100644 --- a/lib/Makefile +++

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

2009-03-05 Thread Mike Frysinger
On Saturday 29 November 2008 20:37:03 Mike Frysinger wrote: On Thursday 06 November 2008 20:38:45 Mike Frysinger wrote: 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

Re: [uClinux-dev] Threading and synchronization questions

2009-03-05 Thread Lennart Sorensen
On Wed, Mar 04, 2009 at 04:05:09PM +0100, Michael Schnell wrote: I did not know about this wording. With exec*() the process stays the same (same pid), and it's still a child of the same parent. It just gets new memory and some initialization is done (man execve=). The new memory and

[uClinux-dev] [PATCH] allow people to declare a user/Makefile.local file

2009-03-05 Thread Mike Frysinger
Signed-off-by: Mike Frysinger vap...@gentoo.org --- user/Makefile |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/user/Makefile b/user/Makefile index 9a7acc4..d311dc6 100644 --- a/user/Makefile +++ b/user/Makefile @@ -438,6 +438,8 @@ dir_$(CONFIG_USER_ZEBRA_ZEBRA_ZEBRA)

[uClinux-dev] uclibc, traget m68knommu

2009-03-05 Thread angelo
hi all, i am trying to compile the uClinux-dist, target proc is cf 5307 (m68knommu). The kernel part compile fine, but compilation then fail compiling the libc. make menuconfig shows 3 options: 1 uClibc 2 uC-libc 3 none I am using: ang...@miri:~/uClinux-dist$ m68k-uclinux-gcc --v Using

RE: [uClinux-dev] Threading and synchronization questions

2009-03-05 Thread Gavin Lambert
Quoth Michael Schnell: I did not know about this wording. With exec*() the process stays the same (same pid), and it's still a child of the same parent. It just gets new memory and some initialization is done (man execve=). Right, but it's the new memory that does the trick. After calling

Re: [uClinux-dev] [PATCH] split config steps into %_defconfig

2009-03-05 Thread David McCullough
Jivin Mike Frysinger lays it down ... The _default target is pretty useful, but sometimes I want to start with the default config. Splitting the default config steps out into a new _defconfig target allows for this code flow w/out breaking it manually with my own CTRL+C: $ make

Re: [uClinux-dev] Does anyone have m68knommu running with current uClibc and gcc 4.3?

2009-03-05 Thread Greg Ungerer
Hi Lennart, Lennart Sorensen wrote: On Wed, Mar 04, 2009 at 04:45:28PM +1000, Greg Ungerer wrote: Given that the initial compile of put.o seems correct it is hard to see how this is an assembler of compiler issues. You are disassembly the final .gdb file, and that would pretty much rule out

[uClinux-dev] [PATCH] m68knommu: m5206e build fix.

2009-03-05 Thread Steven King
Signed-off-by: Steven King sfk...@fdwdc.com diff --git a/arch/m68knommu/platform/5206e/config.c b/arch/m68knommu/platform/5206e/config.c index d01a5d2..db90254 100644 --- a/arch/m68knommu/platform/5206e/config.c +++ b/arch/m68knommu/platform/5206e/config.c @@ -17,6 +17,7 @@ #include

[uClinux-dev] [PATCH] m68knommu: m528x build fix.

2009-03-05 Thread Steven King
There isn't any mcfqspi.h in the tree, and without it everything inside the #ifdef CONFIG_SPI is uncompilable. Signed-off-by: Steven King sfk...@fdwdc.com diff --git a/arch/m68knommu/platform/528x/config.c b/arch/m68knommu/platform/528x/config.c index dfdb5c2..44baeb2 100644 ---

Re: [uClinux-dev] Does anyone have m68knommu running with current uClibc and gcc 4.3?

2009-03-05 Thread Lennart Sorensen
On Thu, Mar 05, 2009 at 12:13:00PM +1000, Greg Ungerer wrote: No, its not. The .gdb file is created by the ld replacement script. elf2flt only does the conversion from ELF to FLT, nothing more. Have a look at the ld script, typically /usr/local/m68k-uclinux/bin/ld, to see how it creates the

[uClinux-dev] [PATCH] m68knommu: m532x build fix.

2009-03-05 Thread Steven King
Signed-off-by: Steven King sfk...@fdwdc.com diff --git a/arch/m68k/include/asm/m532xsim.h b/arch/m68k/include/asm/m532xsim.h index 1835fd2..e13903a 100644 --- a/arch/m68k/include/asm/m532xsim.h +++ b/arch/m68k/include/asm/m532xsim.h @@ -16,6 +16,7 @@ #define MCFINT_VECBASE 64 #define

Re: [uClinux-dev] Does anyone have m68knommu running with current uClibc and gcc 4.3?

2009-03-05 Thread Lennart Sorensen
On Thu, Mar 05, 2009 at 01:17:26PM -0500, Lennart Sorensen wrote: Yeah I finally figured out that part. That's when I discovered that gcc 4.3.3 was turning my -m5200 into -m5206 which didn't match what my uclibc directories were using, and that it also causes the -p flag to be passed to

Re: [uClinux-dev] [PATCH] dosfstools: version bump to 3.0.2

2009-03-05 Thread Mike Frysinger
On Wednesday 04 March 2009 18:39:03 Mike Frysinger wrote: This updates dosfstools from the ancient 2.10 version to 3.0.2 which has a bunch of fixes. It also includes a Blackfin fix for unaligned issues (you can see the patch in the patches/ subdir). Otherwise, the 3.0.2 src tree is left

Re: [uClinux-dev] 8.3 filenames on sd card

2009-03-05 Thread Mike Frysinger
On Thursday 05 March 2009 11:52:59 Tom Stalcup wrote: Does anyone know how to format an SD card so that uclinux can read/write filenames greater than 8 characters long? you're using the wrong filesystem when you mounted. use vfat, not msdos. -mike signature.asc Description: This is a