Changes between Version 19 and Version 20 of QuickStartSoclib


Ignore:
Timestamp:
Nov 25, 2009, 12:52:04 PM (14 years ago)
Author:
becoulet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • QuickStartSoclib

    v19 v20  
    184184Note: This example is readily available in the `examples/hello` directory in the MutekH source tree.
    185185
    186 The MutekH configuration for the 4 Mips processors platform is in the `hello/config_soclib_mipsel` file:
    187 {{{
    188 
    189 # Application license
    190   CONFIG_LICENSE_APP_LGPL
    191 
    192 # Platform types
    193   CONFIG_ARCH_SOCLIB
    194 
    195 # Processor types, Mips little endian with multiprocessor support up to 4 cpus
    196   CONFIG_CPU_MIPS
    197   CONFIG_CPU_MIPS_VERSION 32
    198   CONFIG_CPU_ENDIAN_LITTLE
    199   CONFIG_SMP
    200   CONFIG_CPU_MAXCOUNT 4
    201 
    202   CONFIG_CPU_RESET_HANDLER
    203 
    204 # Mutek features
    205   CONFIG_PTHREAD
    206   CONFIG_MUTEK_CONSOLE
    207 
    208 # Device drivers
    209   CONFIG_DRIVER_CHAR_SOCLIBTTY
    210   CONFIG_DRIVER_ICU_SOCLIB
    211   CONFIG_ARCH_DEVICE_TREE
    212 
    213 # New source code module to be compiled
    214   CONFIG_MODULES examples/hello:%CONFIGPATH
    215 
    216 # definitions of the memory sections where to put things
    217   CONFIG_ROM_ADDR 0x60100000
    218   CONFIG_ROM_SIZE 0x00100000
    219 
    220   CONFIG_RAM_ADDR 0x62600000
    221   CONFIG_RAM_SIZE 0x00100000
    222 
    223 # Add an hardware enumerator
    224   CONFIG_FDT
    225   CONFIG_DRIVER_ENUM_FDT
    226 }}}
     186The MutekH configuration for the 4 Mips processors platform is in the [source:trunk/mutekh/examples/hello/config_soclib_mipsel] file.
    227187
    228188You may have noticed the processor definition change:
    229189we are now building for a 4 little-endian Mips processors platform.
    230190
    231 Have a look to the BuildSystem page for more information about configuration system.
     191Have a look to the BuildSystem page for more information about configuration system and configuration file format.
     192The [http://www.mutek.fr/www/mutekh_api/ MutekH API reference manual] describes all available configuration tokens.
    232193
    233194== Platform description ==
     
    278239}}}
    279240
    280 You may want to refer to other articles available from the main page to go further with MutekH.
     241You may want to refer to other articles and documents available from the main page to go further with MutekH.
     242
     243The [https://www.soclib.fr/trac/dev/wiki SoCLib] home page provides a livecd image with more advanced examples ready to compile and run. These examples are using older MutekH revisions though.