Difference between revisions of "BootLoader"

From ArmadeusWiki
Jump to: navigation, search
(Modify your environment variables)
(Modify your environment variables)
Line 70: Line 70:
 
  setenv netmask=255.255.255.0 (default value should be fine in most situations)
 
  setenv netmask=255.255.255.0 (default value should be fine in most situations)
 
  setenv ipaddr 192.168.0.3  
 
  setenv ipaddr 192.168.0.3  
  setenv serverip=192.168.200.39 (the IP adresse of your tftp host server to download update files )
+
  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)
 
  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.
 
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.
 
Do not forget to save your changes in flash with '''saveenv''' to have them available at power up.

Revision as of 21:27, 27 January 2007

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.

   tar jxvf u-boot-1.1.3.tar.bz2
   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.
Use the jumper to boot the integrated freescale bootstrap.
check your host .kermrc file and add the following line:

   set transmit linefeed on 

Then connect to the apm9328:

   kermit 
c

Synchronize baudrate by pressing the 'A' key until you receive the character ':' then press return to validate the synchronization.
Go back to command mode

   <CTRL><ALT GR>\ 
c

Then transmit the u-boot.brec file:

   transmit armadeus_path/software/buildroot/u-boot.brec 

This process can take a couple of minutes. U-boot is now running in RAM. make a new connection to check you have prompt: BIOS> You can burn u-boot in flash memory. see Update u-boot hereafter. Then remove the jumper to use u-boot at the next power-up.

For faster restoring you can use BootStrap utility too.

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

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

Links