Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
4k views

How can I get the source code for the linux utility tail?

this command is really very useful but where I can get the source code to see what is going on inside . thanks .
6
votes
5answers
2k views

Can I use boost on uclibc linux?

Does anyone have any experience with running C++ applications that use the boost libraries on uclibc-based systems? Is it even possible? Which C++ standard library would you use? Is uclibc++ usable ...
5
votes
3answers
923 views

ctags does not parse stdio.h properly

I am trying to use ctags with VIM, and I am a newbie to both. In order to test the extent to which ctags could be useful I decided to put it through a very simple test, namely to parse the headers in ...
4
votes
1answer
305 views

Executing code that is preloaded in flash NOR

I'm building a uClinux system to run on an NXP LPC2478. The chip has 512k onboard fast flash from which it can directly execute code. I want to load and run a user app out of regular external SDRAM. ...
4
votes
4answers
5k views

arm-linux-gcc vs arm-elf-gcc

I am looking at uClinux system that builds the kernel with arm-linux-xxx, but builds the user apps with arm-elf-xxx. If the apps are intended to run on linux, wouldn't it be better to build ...
3
votes
2answers
133 views

Please explain the use of ':' and a trailing ',' in this struct initialization C code

static struct file_operations memory_fops = { open: memory_open, /* just a selector for the real open */ }; this is from mem.c file in uclinux
3
votes
3answers
348 views

How do I spawn a daemon in uClinux using vfork?

This would be easy with fork(), but I've got no MMU. I've heard that vfork() blocks the parent process until the child exits or executes exec(). How would I accomplish something like this?: pid_t pid ...
3
votes
5answers
815 views

Using mono in embedded linux for hardware

I am doing research for a company as an internship. I had some question in using Mono, the cross platform implementation of .Net platform. My company designs hardware and sotware. My knowledge of ...
3
votes
1answer
87 views

Bitbanging a PIO on Coldfire/ucLinux

Here's the problem: I need to program some hardware via 2 pins of the PIO (1 clock, 1 data). Timing constraints are tight - 10ms clock cycle time. All this, of course, whilst I maintain very high ...
2
votes
2answers
103 views

High resolution timer on Coldfire (MCF5328)

I've inherited a embedded project that requires some simple, per-function performance profiling. It consists of a Coldfire (MCF5328) running uClinux (2.6.17.7-uc1). I'm not an expert on either the ...
2
votes
2answers
270 views

What does it mean to attach ROMFS in RAM?

I'm building a kernel for an ARM platform running uClinux 2.4 and under "General Setup" in the Linux configuration there is an option called "m68knommu-style attached romfs in RAM support". My ARM ...
1
vote
0answers
352 views

embedded uclinux footprint on cortex M3

I am having trouble with this question, somebody (hopefully mistakenly) moved the previous question to Unix/Linux list which has zero uclinux tagged questions. This is more of a embedded linux ...
1
vote
2answers
1k views

Lock a mutex multiple times in the same thread

I'm developing an application on an embedded linux OS (uClinux) and I need to be able to lock the mutex more than once (by the same thread). I have a mutex and a mutexattr defined and initialized as ...
0
votes
1answer
234 views

Algorithm for fast decompression & rescaling of jpeg image

Working on an application in uCLinux 2.4 to run in an IP camera. Need to grab an image from the videostream (MJPEG, MPEG4 or h.264), decompress it to raw format and rescale it to smaller size. Need to ...
0
votes
1answer
120 views

adding python packages to uClinux

I have distribution of uClinux, throught "menu config" I check python and compile("make"). I have python on my chip now. There is a binary executable file /bin/python. But what about python ...
0
votes
1answer
242 views

Convert Olson time zone file to TZ environment variables

We are using the "America/New_York" convention for the user to select the timezone, but in our resource constrained system, we must manually provide the actual TZ variable. For example, for New York, ...