BootLoader
Contents
Introduction
This page describe the U-Boot installation/usage in the Armadeus context.
Build U-Boot
Build process is now part of the Armadeus package. The process is automated in the global build process (see Install Armadeus software). Compiled binaries files are in the buildroot subdirectory.
- u-boot.bin is a binary image file and can be downloaded with the u-boot loadb command (or tftpboot, nfs,...)
- u-boot-brec is a boostrap record file compatible with the freescale bootloader. Use the kermit transmit command.
The following information is only usefull for a manual build process.
- Download Das U-Boot source code archive from: http://sourceforge.net/project/showfiles.php?group_id=65938
- Uncompress it:
tar jxvf u-boot-1.1.3.tar.bz2
- Download Armadeus patches corresponding to your u-boot & gcc version from: http://fr.groups.yahoo.com/group/armadeus/files/Patches/ and copy it to the u-boot directory.
- Go inside the u-boot directory and apply the patches (here for u-boot1.1.3):
patch -p1 < u-boot1.1.3-apm9328-2.1.patch patch -p1 < u-boot1.1-gcc3.4.patch (if necessary)
If you have a 8 or 16MB apm9328 board, edit the include/configs/apm9328.h. look for a #define SDRAM_xxxMBIT change it to a:
* #define SDRAM_64MBIT /* for 8MB */ * #define SDRAM_128MBIT /* for 16MB */ * #define SDRAM_256MBIT /* for 32MB */
Then build u-boot:
make apm9328_config make
this produce u-boot.bin and u-boot.brec files described hereabove.
Install or restore from scratch
If your Armadeus board doesn't boot anymore (flash content erased or dammaged), you will have to use the bootstrap mode of the i.MX.
The uboot_recover python script is used to flash an uboot version.
This tool is located in the armadeus/software/uboot_recover folder of the armadeus project tree.
Take a look a the INSTALL file the first time you want to use the recover tool.
Remark: the serial port must support a baud rate of 57600 bps per second.
Modify your environment variables
There is a set of variables you can customize to your needs. The commande printenv show you most of them and their current state. Use the command setenv to change one of these variable. For instance:
setenv ipaddr 192.168.0.3
Use the command saveenv to save the state of your environment variables in flash memory.
In order to use network features with u-boot you have to set the network environment variables:
setenv netmask 255.255.255.0 (default value should be fine in most situations) setenv ipaddr 192.168.0.3 setenv serverip 192.168.0.5 (the IP adresse of your tftp host server to download update files ) setenv rootpath "/tftpboot/root" (to boot linux over nfs)
You can use the dhcp command to configure these variable from your dhcp server. Probably you will have to adjust the serverip variable manually.
BIOS> dhcp dm9000 i/o: 0x15c00000, id: 0x90000a46 MAC: 00:0e:32:00:00:01 operating at 100M full duplex mode BOOTP broadcast 1 DHCP client bound to address 192.168.0.3 BIOS>setenv serverip 192.168.0.5 BIOS>saveenv
Do not forget to save your changes in flash with saveenv to have them available at power up.
Update U-Boot
There are two steps to update u-boot:
- 1] Load the new u-boot code in RAM
You can use the following commands to download U-boot. With ethernet and a tftpboot server:
tftpboot 08000000 /tftpboot_path_to_buildroot/u-boot.bin
With ethernet and a nfs server:
nfs 08000000 host_ip_addr:/nfs_path_to_buildroot/u-boot.bin
With the kermit and a serial line
loadb <CTRL><ALT GR>\ c send path_to_buildroot/u_boot.bin c
- 2] Transfer code from RAM to Flash memory
There is a simple u-boot command/script to do that:
run flash_uboot
Advanced Linux Boot
The command "boot" is the common way to run linux from flash memory. This command is equivalent to the macro:
run jffsboot
This is the default command stored the u-boot variable: bootcmd.
bootcmd=run jffsboot
U-boot also support the commands to boot from from a network or a sd/mmc card. The command:
run nfsboot
boot linux rootfs from an nfs server. Change the u-boot variables serverip and rootpath to fit with your host pc. The command
run mmcboot
boot linux rootfs from an sd/mmc memory card. Adapt the variables: mmcroot and mmcrootfstype to your extension card boot partition.
Customize the flash memory organization
Booting Linux
The Install Armadeus software on target provide some information to install linux on Armadeus board
Customize Linux boot mode
Typical Kermit (.kermrc) config file
set line /dev/ttyS0 set speed 115200 set carrier-watch off set handshake none set flow-control none robust set file type bin set file name lit set rec pack 1000 set send pack 1000 set window 5 set transmit linefeed on