Changes between Initial Version and Version 1 of BeagleBoard


Ignore:
Timestamp:
2020-11-21T09:26:36Z (3 years ago)
Author:
Jiri Svoboda
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • BeagleBoard

    v1 v1  
     1= HelenOS on !BeagleBoard =
     2
     3Information pertaining to porting HelenOS to the [https://beagleboard.org/beagleboard-xm BeagleBoard-xM] single-board computer.
     4
     5== Status ==
     6
     7Supported models:
     8
     9  * !BeagleBoard-xM
     10
     11The !BeagleBoard-xM has been supported since HelenOS 0.6.0.
     12
     13== Booting ==
     14
     15The !BeagleBoard can be either netbooted or booted over serial.
     16
     17In either case, start by build HelenOS for the arm32/beagleboard target. This produces an uImage.bin binary.
     18
     19In order to boot over network, do:
     20
     21{{{
     22U-Boot# dhcp 192.168.0.108:/helenos/uImage.bin
     23...
     24U-Boot# bootm
     25}}}
     26
     27where ''192.168.0.108'' is the IP address of the tftpboot server and ''/helenos/uImage.bin'' is the path to the HelenOS uboot image relative to the beginning of the tftpboot directory.
     28}}}
     29
     30Boot over serial takes much longer:
     31
     32{{{
     33U-Boot# loady   # after this command, start sending the uImage.bin from the terminal program using the ymodem protocol
     34...
     35U-Boot# bootm
     36}}}