Changes between Version 24 and Version 25 of QuickStartSoclib


Ignore:
Timestamp:
Feb 17, 2010, 8:21:44 PM (14 years ago)
Author:
becoulet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • QuickStartSoclib

    v24 v25  
    3535=== Writing the example source code ===
    3636
    37 Note: This example is available directly from {{{examples/hello_het}}} directory in source tree: [source:trunk/mutekh/examples/hello_het]
    38 
    3937The MutekH kernel source code is fully configurable and can be tweaked to adapt hardware platform
    4038and application needs. Configuration is handled by a dedicated tool which check dependencies and
     
    4846 - Write the source configuration file, see BuildSystem for details.
    4947
     48Note: This example is available directly from {{{examples/hello_het}}} directory in source tree: [source:trunk/mutekh/examples/hello_het]
     49
    5050=== Getting the cross-compilers ===
    5151
     
    5656 $ tools/crossgen.mk all TARGET=arm-unknown-elf
    5757}}}
    58 
    59 === Writing the MutekH configuration ===
    60 
    61 The MutekH configuration for heterogeneous Mips/Arm processors platform is in the [source:trunk/mutekh/examples/hello_het/config] file.
    62 
    63 Have a look to the BuildSystem page for more information about configuration system and configuration file format.
    64 The [http://www.mutek.fr/www/mutekh_api/ MutekH API reference manual] describes all available configuration tokens.
    65 
    66 === Platform description ===
    67 
    68 The MutekH software uses hardware enumeration to get details about available hardware in the platform, so the `CONFIG_ARCH_DEVICE_TREE` token is defined in the configuration file. It will let the kernel get the platform layout description from a FlattenedDeviceTree which will be built-in.
    6958
    7059=== Compiling the application along with MutekH ===