Tagged Questions
0
votes
2answers
25 views
Uboot Option to print boot time prefixes
Is there any uboot config option to print boot sequence with time prefixes similar to kernel option CONFIG_PRINTK?
I am expecting output like below,
[ 0.000000] U-Boot 1.1.4-gedeced79 (Feb 6 ...
0
votes
0answers
29 views
What register needs to be set for booting linux kernel from bootloader
I am new to bootloader stuff and going through u-boot code and looking into file zimage.c file with boot_zimage function and following are comments from boot_zimage function
Set %ebx, %ebp, and %edi ...
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, ...
0
votes
1answer
108 views
What all necessary argument required to boot Linux kernel
I am new to linux kernel and Try to understand booting of Linux kernel from the point it loaded into RAM,I would like to know after Linux image loaded into RAM ,How control is passed to this image ...
2
votes
4answers
115 views
Bootloader Working
I am working on Uboot bootloader. I have some basic question about the functionality of Bootloader and the application it is going to handle:
Q1: As per my knowledge, bootloader is used to download ...
0
votes
0answers
111 views
how to call a U-Boot stored in flash from a first bootloader
I have a U-Boot bootloader stored in NOR flash (at the middle of flash for example). I want to call it from a first U-Boot bootloader which is stored at the beginning of the flash.
I already tried ...
1
vote
0answers
137 views
Booting different kernel from U-Boot based on time stamp
I am using U-Boot and two kernel Image(uImage). I want to add some code in U-Boot which will select kernel based of time stamp.
I am using MIPS architecture.
this two kernels are in different MTD ...
0
votes
0answers
97 views
Upgrading Uboot to support PCIe switch, PCIe to PCI bridge, POE
What changes will be required (if any) in the UBoot bootloader if the following h/w is added to an existing arm based board.
a) PCIe switch
b) PCIe to PCI bridge
c) Power over ethernet
3
votes
2answers
401 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.
...
2
votes
1answer
201 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.
0
votes
2answers
37 views
ROMMON and u-boot on network devices
What is the difference between rommon and u-boot in network devices? I'm reading some device documentation and i can't quite tell what is the difference.
1
vote
1answer
335 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 ...
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 ...
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, ...
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 ...
0
votes
1answer
703 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 ...
2
votes
1answer
3k views
howto replace android with another distribution
I bought a very weak netbook that comes preinstalled with android 2.0 which
I want to replace with another linux distro like puppy or damnSmallLinux.
the netbook has no bios menu with "boot from SD ...
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
351 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 ...
3
votes
1answer
2k 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 ...