-1
votes
1answer
62 views

ARM S3C6410 kernel boot

I am working on ARM S3C6410 device now. The problem is first 256KB of NAND was broken. I am trying to boot with SD card, uboot works. What I want to know is as following. Can I boot kernel from SD ...
3
votes
1answer
70 views

u-boot - select the correct linux image

I want to let u-boot select between 2 linux kernel images based on a criterion. For example, I have uImage1 and uImage2 in SPI, u-boot checks the CRC of uImage1 and if ok, boots up uImage1 else boots ...
2
votes
1answer
67 views

multi stage booting

I have one board with working u-boot flashed on it. Now I want to add some functionality to the bootloader (for initializing some part of the hardware), But the development process may brick the board ...
2
votes
1answer
162 views

Enabling Interrupts in U-boot for ARM cortex A-9

I am trying to configure a GPIO interrupt in the uboot, This it to test the Interrupt response time without any OS intervention (Bare-metal). I was able to configure the pin-muxing and also successful ...
5
votes
3answers
216 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 ...
3
votes
2answers
412 views

Cross Toolchain for ARM U-Boot Build Questions

I'm trying to build my own toolchain for an Raspberry-Pi. I know there are plenty of prebuilt Toolchains. This work is for educational reasons. I'm following the embedded arm linux from scratch book. ...
1
vote
1answer
206 views

About BOOTCMD in Uboot

My board is S3C6410, When i read the source code of uboot. there is something troubles me. #define CONFIG_BOOTCOMMAND "nand read 0xc0008000 0x100000 0x500000;bootm 0xc0008000" what does it mean ? ...
0
votes
1answer
172 views

enter low power mode within u-boot, wake up on interrupt

I try to implement a low power "deep sleep" functionality into uboot on button press. Button press is handled by linux and a magic code is set to make u-boot aware of the stay asleep do not reboot" ...
0
votes
0answers
527 views

U-Boot hangs while loading kernel?

I am working on Freescale board imx50evk. I have built the uboot.bin and uImage using LTIB (linux target image builder). At the U-Boot prompt I enter the bootm addr command, and then it hangs after ...
0
votes
0answers
103 views

uboot stop after showing message FEC: enable RMII gasket

When i allow the uboot to autoboot then it shows the message FEC: enable RMII gasket and stop without returning to the prompt or giving any other message.
0
votes
1answer
101 views

A dead loop test in uboot

.globl _start _start: bl dead_loop ldr pc, _start ldr pc, _undefined_instruction ldr pc, _software_interrupt ldr pc, _prefetch_abort ldr ...
0
votes
1answer
593 views

How to extract kernel symbols from uImage (arm)?

I want to extract kernel symbols from a u-boot image The final goal is to debug syscalls with gdb The kernel is compiled with CONFIG_DEBUG_INFO=y and gcc is using -g option (I checked) After make ...
1
vote
1answer
1k views

uboot- MMC no SDcard

I am trying to get a linux kernel with a linux rootfs running on an imx51 Freescale board. I compiled linux kernel, root file system and u-boot and copied the image to SD-card: partition 0: boot ...
0
votes
1answer
549 views

Questions about u-boot relocation feature

I am using the u-boot-2011.12 on my OMAP3 target, the cross tool chain is CodeSourcery arm-none-linux-gnueabi, I compiled u-boot, downloaded it onto the target and booted it, everything went fine,but ...
0
votes
1answer
3k views

Nand partitioning in u-boot

I am working on an Embedded ARM9 development board. In that i want rearrange my nand partitions. Can anybody tell me how to do that ? In my u-boot shell if i give the command mtdparts which gives ...
0
votes
1answer
338 views

Error: bad instruction `sync' while corss compiling uboot source with tsec.c driver

I am trying to compile tsec.c file with the uboot source. I have done that before but with powerpc toolchain. Right now I am trying to use ARM toolchain which comes with android "froyo". Without ...
0
votes
1answer
2k views

use fw_printenv for get U-boot's env

I want to use fw_printenv for get U-boot's env. $cat /proc/mtd mtd0: 00060000 00004000 "bootloader" mtd1: 00200000 00004000 "kernel" mtd2: 03c00000 00004000 "root" and $vi /etc/fw_env.config # ...
0
votes
1answer
1k views

Debug uBoot with JTAG and Trace32?

I am bit new to this field and my query here is a bit vague. I am particularly interested in how any of you, who have had experience with uBoot and a JTAG debugger (like a Lauterbach), have gone about ...
1
vote
3answers
353 views

catch the serial number from bootloader

I want to catch the serial number which has been written into the U-Boot environment. Bootloader :U-boot 1.2 kernel:2.6.24 tool-chain:arm-linux-gcc-3.4.1 rfs :busybox-1.9.2 Creating 3 MTD partitions ...