Tagged Questions
1
vote
0answers
20 views
MPC8xx using watchdog with uboot and linux
I have an embedded platform with a powerpc MPC875 CPU running with uboot and linux 3.2. I'd like to use the watchdog feature of this cpu. My problem is that the watchdog timed out before linux starts ...
0
votes
0answers
39 views
fsl i.mx6 burning ,when start the burning android system appear Initialize error
U-Boot 2009.08 ( 3月 05 2013 - 17:20:28)
CPU: Freescale i.MX6 family TO1.2 at 792 MHz
Temperature: 34 C, calibration data 0x5774e769
mx6q pll1: 792MHz
mx6q pll2: 528MHz
mx6q pll3: 480MHz
mx6q ...
-2
votes
1answer
98 views
How do I reserve RAM on a PowerPC CPU running Linux?
I am trying to reserve 10MB out of the 2GB onboard RAM on an embedded single-board computer that uses the Canyonlands (PowerPC-460EX) CPU. By reserve RAM, I mean block out a chunk of RAM that Linux ...
-1
votes
1answer
137 views
Try to create a minimum rootfs in fat16 but become nilfs2? [closed]
I'm trying to make a minimum rootfs for u-boot by this method
# image.dd with partition table as fat16 by parted
kpartx -a -v image.dd
mkdosfs -F16 -v /dev/mapper/loop0p1
mount -o loop ...
0
votes
0answers
152 views
In U-Boot, can the dhcp command automatically set the serverip environment variable?
In U-Boot, the dhcp command automatically sets some environment variables. e.g. gatewayip, netmask, bootfile, and rootpath. These environment variable all correspond to the configuration settings of ...
1
vote
1answer
192 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
45 views
I want to know where can I find the generic or ideal DDR settings for u-boot?
I was studying about the open source u-boot. Hence I wanted to know where can I find the generic DDR settings for u-boot? What are the ideal settings and likes? I do not need any specific SoC related ...
0
votes
2answers
212 views
why uboot used arm-linux-gcc for default arm CROSS_COMPILE?
i am very strange about the toolchains, arm-eabi-gcc, arm-linux-gcc, and arm-elf-gcc.
For arm-linux-gcc and arm-elf-gcc, in my opinion, just used the different the libc.
But what's the difference ...
0
votes
1answer
634 views
How to get into uboot command prompt [closed]
I have a system that booted into Linux uain UBOOT. I can see tha it is booting when I connect to it via serial port. How can I stop it booting UBOOT and get the UBoot command prompt?
During boot, I ...
4
votes
1answer
426 views
Pass large amount of binary data from u-boot to linux kernel
Have some issues with passing large amount of data (3 MB) from uboot to linux kernel 2.6.35.3 on imx50 ARM board. This data is required in kernel device driver probe function and then it should be ...
0
votes
0answers
139 views
how to enable caches in u-boot for imx boards?
Since I am working on boot time optimization for imx boards , I heard enabling caches in u-boot causes improvements in boot performance.Can any one suggest the way to enable caches in u-boot for ...
1
vote
1answer
333 views
How to remove busybox from linux?
I've a Leopard board (with DM368 Ti processor) up and running.(Uboot + Linux Kernel + root fs)
Now, the problem is, i no longer need busybox (which is currently there)..So i removed it.( from ...
6
votes
2answers
533 views
Reserving a portion of SDRAM to pass data between U-Boot and the Linux Kernel
How can I reserve a portion of SDRAM, say 4 bytes, to pass a flag between U-Boot and the Linux kernel so that this reserved memory location is not initialized by the linker and the value preserved ...
2
votes
1answer
1k views
Linux kernel booting stops at Uncompressing Linux… Ok, booting the kernel
I have a problem about porting kernel from old SH4 to new SH4. Please let me show the difference between them.
[Old SH4]
boot loader: redboot v2.0
kernel version: 2.4
[New SH4]
boot loader: u-boot ...
0
votes
1answer
307 views
Getting a different config file for Linux PXE Boot
i am looking into PXE Boot to boot Linux from U-Boot
i am using a sollution thar resembles the PXELINUX sollution
i have one fundamental issue i dont understand about the process: the pxe client ...
4
votes
1answer
2k views
How to change U-Boot memory map
The U-Boot(2009.03) on MS104-SH4 has the RAM memory map shown below.
0x8c000000 Not for use (4kB)
0x8c001000 for Linux kernel & root file system (3MB)
0x8c400000 for Linux process (28MB)
For me, ...
0
votes
1answer
198 views
uboot images for mx5x
I started studying emebedded device on a freescale mx5x board, and I am now exploring the boot-mods of the board. depending on the boot-mod choosed, the proper uboot image is needed.
for the mmc ...
1
vote
0answers
113 views
how to read u-boot env from x-loader
In my X-loader, I have to read u-boot env and few other data which I will be saving into u-boot env partition. Based on the data saved in u-boot env partision I have to perform some task.
Could ...
6
votes
2answers
1k 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 ...
0
votes
1answer
417 views
Configuring physical memory for linux kernel
I have an embedded board (MIPS architecture) running linux 2.6.29 with u-boot as the bootloader. I have 512MB(bytes) of DDR3 RAM.
The problem is, Linux is able to use only around 128MB of it. I ...
6
votes
3answers
2k views
How does the bootloader pick up the command after a “restarting system with command”?
Looking in the android source for the reboot command we find the following line:
__reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, \
LINUX_REBOOT_CMD_RESTART2, argv[optind]);
Which is the ...
1
vote
7answers
3k views
loading u-Boot in memory instead of flashing it
In my ARM based custom board, I flash u-boot to NAND whenever I do changes on that. (putting some debug statements/modification). Is there any way to directly load the uboot image in RAM memory ...
0
votes
1answer
700 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 ...
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
# ...
1
vote
3answers
348 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 ...