Tagged Questions
Embedded Linux is the use of Linux in embedded computer systems such as mobile phones, personal digital assistants, media players, set-top boxes, and other consumer electronics devices, networking equipment, machine control, industrial automation, navigation equipment and medical instruments.
14
votes
2answers
1k views
How does the linux kernel manage less than 1GB physical memory?
I'm learning the linux kernel internals and while reading "Understanding Linux Kernel", quite a few memory related questions struck me. One of them is, how the Linux kernel handles the memory mapping ...
9
votes
4answers
1k views
How to move from microcontrollers to embedded linux?
As a kind of opposite to this question: "Is low-level embedded systems programming hard for software developers" I would like to ask for advice on moving from the low level embedded systems to ...
8
votes
1answer
366 views
How can I programmatically get the amount of memory currently available from C/C++ code?
In my middleware software layer I am receiving a lot of crashes due with the message,
page allocation failure. order:10, mode:0xd1
As I understand the crash can occur due to number of reasons, ...
8
votes
7answers
713 views
C vs C++ in embedded Linux
I am developing an application for embedded Linux (ARM). It will execute 500 times/sec, therefore speed is important. I would prefer to use C++ but I am afraid it will be slower than C even if I avoid ...
7
votes
4answers
632 views
Continuous Integration/ Unit testing in embedded C++ systems
What is generally used for unit testing and especially continuous integration for embedded systems.
I am especially thinking of that you usually have to cross-compile and deploy, and also that you ...
7
votes
2answers
1k views
How to do power save on a arm based Embedded Linux system?
I plan to develop a nice little application that will run on a
arm based embedded linux platform,
however since that platform will be battery powered I'm searching for
relevant information on how ...
6
votes
2answers
369 views
Linux kernel driver: what model for NVRAM access?
I just wrote a RTC driver for an NXP RTC chip on my board, it works great. This chip also has some battery backed RAM that I'd like to make available to a user space application. The RTC framework ...
5
votes
3answers
155 views
Linux total available memory
I'm trying to figure out a good formula for finding out how much memory is available. I'm using the following formula currently: freeMem = MemFree + Buffers + Cached - Shmem. However, according to ...
5
votes
2answers
152 views
Embedded Linux - Booting phases
I would like to systematize my Uboot-linux knowledge. Is it true that min. 2 bootloader phases are needed in each embedded platform. Or this process can vary:
1 Step - Bootloader (can be UBoot) is ...
5
votes
1answer
471 views
telnet client connection stops receiveing data, server is still sending
I'm Working in an embedded linux environment.
it launches a telnet daemon on startup which watches on a particular port and launches a program when a connection is received.
i.e.
telnetd -l ...
5
votes
5answers
653 views
embedded web browser
I'm looking for Linux embedded web browser, or preferably just a rendering object (it will not be used for actual browsing, just for displaying web based gui).
The requirements are:
Written in ...
5
votes
3answers
707 views
Embedded Linux or eCos?
One way to look at it - embedded Linux starts with desktop Linux & ditches the parts not needed for embedded systems (is this actually true?), whereas eCos is designed from the ground up for ...
5
votes
4answers
824 views
Embedded Linux for total beginner
I want to learn how to develop in embedded linux. What materials should I need? I don't have the actual embedded device so I plan to use some device emulator for the PC. I want to know how to load the ...
5
votes
5answers
618 views
Lightweight debugging on embedded Linux
I'm developing an application that runs on a small Linux-based SBC (~32MB RAM). Sadly, my app recently became too large to run under GDB anymore. Does anyone know of any good, lightweight debugging ...
5
votes
6answers
435 views
What active Linux / embedded Linux forums are available online? [closed]
What active Linux / embedded Linux forums are available online?
5
votes
1answer
345 views
Is qt-embedded-linux drawing library fixed point?
I am working on embedded device which does not have Floating Point Unit, I want to port QT-embedded-linux to it. So Please tell me that whether drawing library of qt has fixed-point or not?
Thanks, ...
5
votes
3answers
826 views
Anybody cross compiled Mono for MIPS 64 using uClibc?
I am trying to statically cross compile Mono for MIPS. I am able to compile Mono, but it is always dynamically linked with it's dependencies, even though I specify static to the compiler.
I wrote a ...
4
votes
3answers
111 views
How are backslash escape sequences implemented in compilers?
I just wanted to know how backslash escape sequences are implemented in compilers?
If we write "\n" in a string, how does a compiler come to replace it with a new line character? How does a compiler ...
4
votes
3answers
138 views
Linux File IO - Multithreading performance - writing to different files
I'm currently working on an audio recording application, that fetches up to 8 audio streams from the network and saves the data to the disk (simplified ;) ).
Right now, each stream gets handled by one ...
4
votes
3answers
165 views
How to limit the size of core dump file when generating it using GDB
I am running an embedded application on ARM9 board, where total flash size is 180MB only. I am able to run gdb, but when I do
(gdb) generate-core-dump
I get an error
warning: Memory read failed for ...
4
votes
2answers
150 views
Is there something similar to NanoBSD in Linux
NanoBSD is a script that makes light, small and in-memory FreeBSD copy. It is useful in embedded systems. Is there something similar to NanoBSD in Linux? Specially a feature like Everything is ...
4
votes
2answers
377 views
How to test the kernel for kernel panics?
I am testing the linux kernel on an embedded device and would like to find situations/ scenarios in which kernel would issue panics. Can you suggest some test steps (manual or code automated) to ...
4
votes
6answers
873 views
Write a bash shell script that consumes a constant amount of RAM for a user defined time
I am trying to write a bash shell script that consumes a high amount of RAM on an embedded device for a user defined time. How do I do it without using arrays ?
4
votes
4answers
988 views
Safely writing to compact flash on embedded Linux
I'm developing an embedded Linux system that runs from compact flash and tmpfs. The flash is mounted read-only and should normally stay that way, but occasionally I need to write something to the ...
4
votes
4answers
161 views
Is there a way to prevent sh/bash from performing command substitution?
From a C program I want to call a shell script with a filename as a parameter. Users can control the filename. The C is something like (initialization/error checking omitted):
sprintf(buf, "/bin/sh ...
4
votes
7answers
730 views
How can I spy on communication between a process and a terminal?
I have a Linux process developed by a third-party that communicates with a terminal. For debugging I want to see the communication going back in forth.
One might think cat would do the trick (to see ...
4
votes
1answer
74 views
Creating a custom device for Swing/AWT to draw to
I am working on an embedded linux device that requires custom java code to draw to the screen. I was wondering if there was any way to create a custom adapter that can update the display based off our ...
4
votes
7answers
1k views
What is the easiest x86 Embedded Linux?
I want to play around with some embedded linux. I want it to be able to run on an x86 processor (for start, it will be running on my regular PC). I have looked online, but the ones I have found seem ...
3
votes
2answers
70 views
“execle ” difference between linux and embedded linux
Using x86 platform , I want to start my application named myapp through this method:execl("./myapp","");It's OK! But failed when I'm using ARM platform + embedded linux. Why ? Any help will be ...
3
votes
1answer
160 views
default baud rate - linux/u-boot
I'm working on the development of an embedded linux system using u-boot. U-boot sets the baud rate of the ttyS0 serial port with the console= bootarg, but I would also like to set the default baud ...
3
votes
2answers
172 views
cross compile problem with simple hello program
Background : Trying to setup a cross compiler environment for arm target (TQ2440/Mini2440)
On HOST running Red Hat:
Wrote a simple hello program
gcc -o hello hello.c
compiles successfully
./hello
...
3
votes
2answers
231 views
Port Android OS on PXA270 device
I am working on WIN CE platform and quite new on Linux and android. I want to port android in PXA270 device running with ARM 9 processor. I googled and found, first install linux kernal, modify it ...
3
votes
2answers
583 views
valgrind on the ARM9?
I see that valgrind has an ARM7 target, but I find conflicting information on whether valgrind has support for the ARM9. The ARM9 target I am working with is running linux.
Has anyone specifically ...
3
votes
2answers
250 views
Open source video encoders for embedded system
I recently designed an H323/SIP compliant video server (in code at least) fully equipped with a Sockets based API which a .NET SDK would use, and a web server, you know ... all of that stuff. Anyways, ...
3
votes
1answer
169 views
Getting U-boot's Version from Userspace
Does anyone know of a way to get U-boot version installed from userspace? There is the fw_printenv command that provides access to U-boot's environment variables, but not the version.
3
votes
1answer
106 views
What is the best toolset for making an application that includes a built-in web server?
I want to create an application where the GUI is accessed using a web browser. That way, the program can be used either locally or remotely. I want to be able to compile both PC (using cygwin or ...
3
votes
2answers
616 views
Function caller in linux kernel
Is there a way to get function caller in linux kernel? I know __func__ returns the function name which is executing. I am looking for the function which called "__func__"
3
votes
5answers
812 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
2answers
3k views
Cross compiling a kernel module
I'm trying to cross compile a helloworld kernel (2.6.x) module for ARM architecture on my intel x86 host.
The codesourcery tool chain for ARM is located at: /home/ravi/workspace/hawk/arm-2009q3
The ...
3
votes
5answers
683 views
Execute a program in kernel space in Linux
If I want to execute a user program (not a kernel module) in Linux kernel space, what options do I have?
I have looked at KML(kernel mode linux) but that is specific to IA-32 architecture. I want a ...
3
votes
3answers
691 views
How to keep asm output from Linux kernel module build
I'm working on a Linux kernel module for a 2.6.x kernel and I need to view the assembly output, though it's currently being done as a temporary file an deleted afterwords. I'd like to have the ...
3
votes
1answer
179 views
Should I base my Embedded Linux product on Qt?
My company is developing a medical product. One of the components is a pda-like platform that will run embedded linux.
We were considering Qt as the UI framework but found out that Qt is a lot more ...
3
votes
1answer
338 views
Reversing the effects of mkimage to get an original gzipped file back
We develop for a specific embedded device at our company, and part of that is making initial root disks that get loaded onto the devices over ethernet via netboot. We've experienced some problems, ...
3
votes
2answers
129 views
Is there any way to determine whether a linux executable is using soft float on an ARM processor?
Is there any way to determine whether a linux executable is using soft float on an ARM processor?
Thanks,
Ben
3
votes
1answer
856 views
How to get uBoot to work with a squashfs / What is FDT in uBoot?
I set-up the Kamikaze toolchain (from openwrt), and compiled Linux 2.6.30.x kernel for an AMCC PPC405ex kilauea reference board. However, for some reason I am doing something wrong in uBoot, as I am ...
3
votes
4answers
607 views
Resources to learn QT/Embedded 4.5?
Can you please give me Resources(Books, Tutorials, Other useful links ) to learn QT/Embedded 4.5, To get quick start in QT programming.
P.S. I am quite familiar with windoing system programming and ...
3
votes
4answers
6k views
Howto debug kernel oops on embedded system
I've got a problem with one of the serial ports on an embedded development. /dev/ttyS0, /dev/ttyS2, and /dev/ttyS3 all work fine with no problems. But in some cases accessing /dev/ttyS1 throws the ...
2
votes
2answers
66 views
Why error in cross compiling Arm Linux GCC?
I'm trying to use AppWeb, and i wrote a very simple program to embed AppWeb into my application, it's using a function in AppWeb library.
#include <appweb/appweb.h>
int main(int argc, char** ...
2
votes
2answers
52 views
Linux old passwd file - reversing
I'm currently trying to "hack" a linux embedded device. This device has a telnet daemon which is not supposed to be used. Anyway, I've taken the binary firmware from the manufacter website and have ...
2
votes
1answer
40 views
Determine load address and entry point of stripped Linux Kernel image
I have a crosscompiling toolchain for an embedded system (mipsel) on my x86 Linux. I know how to build a custom kernel (let's call the image "vmlinux") for it and how to strip that image via
objcopy ...