Tagged Questions
0
votes
1answer
73 views
Typecasting an address to Function pointer
I have particular code which comes from u-boot, bootloader where address being typecast to function pointer but not sure for what purpose that's is being done
void (*kernel)(bd_t *, ulong r4, ...
5
votes
3answers
213 views
Embedded: C Coding for Ctrl-C interrupt in u-boot terminal
I'm a beginner in embedded programming. I'm working on craneboard (ARM Cortex A8). The source code is available at github.
I have created a C code to make an external LED connected via GPIO, to ...
0
votes
1answer
39 views
u-boot compilation error
I have a feeling this may be too broad of a question but I'm hoping some may be a u-boot expert so I'm going to give it a shot...
When compiling for a powerpc based setup similar to redwood, I'm ...
2
votes
1answer
199 views
U-Boot: read-only environment variables
In U-Boot how should we configure an environment variable during boot up that would be just read-only. IOW setenv on this variable (in the U-Boot console or pragmatically) should not be allowed.
1
vote
2answers
103 views
Why do functions have two underscores
I am currently studying the flow of u-boot for ARM. I find many functions with this format __funcname__. Why are 2 underscores used before and after a file name?
0
votes
1answer
702 views
use fw_setenv for set U-boot's env (U-boot)
I used the source code (version:u-boot 1.2)
want to corss compiler fw_setenv .
so. I enter to uboot/uboot-1.2-dm9000/tools/env
and
arm-linux-gcc -Wall -DUSE_HOSTCC -I/include crc32.c fw_env.c ...
