Changes between Version 7 and Version 8 of Arch/Soclib/Tutorial


Ignore:
Timestamp:
Mar 24, 2010, 11:21:08 AM (14 years ago)
Author:
Nicolas Pouillon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Arch/Soclib/Tutorial

    v7 v8  
    3434
    3535Even if it is available in newer revisions, this tutorial has been tested
    36 and is expected to work well at revision 1488,
     36and is expected to work well at revision 1489,
    3737please try with this one if you have troubles with the last revision.
    3838
    3939{{{
    40 svn co -r 1488 https://www.mutekh.org/svn/mutekh/trunk/mutekh
     40svn co -r 1489 https://www.mutekh.org/svn/mutekh/trunk/mutekh
    4141}}}
    4242
    4343=== Writing the example source code ===
    4444
    45 Note: This example is available directly from [source:trunk/mutekh/examples/hello@1488 examples/hello] directory in source tree.
     45Note: This example is available directly from [source:trunk/mutekh/examples/hello@1489 examples/hello] directory in source tree.
    4646
    4747 * Writing the source code in `hello.c`
     
    8080The MutekH configuration for the hello application is in the [source:trunk/mutekh/examples/hello/config examples/hello/config] file.
    8181
    82 This file only holds information about the application (here a simple pthread application) and relies upon files in the [source:trunk/mutekh/examples/common@1488 examples/common] directory for the platform definitions.
     82This file only holds information about the application (here a simple pthread application) and relies upon files in the [source:trunk/mutekh/examples/common@1489 examples/common] directory for the platform definitions.
    8383
    8484Have a look to the BuildSystem page for more information about configuration system and configuration file format.
     
    8888=== Platform description ===
    8989
    90 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 [source:trunk/mutekh/examples/common/platforms-soclib.conf@1488 examples/common/platforms-soclib.conf] configuration file. It will let the kernel get the platform layout description from a FlattenedDeviceTree which will be built into the kernel.
     90The 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 [source:trunk/mutekh/examples/common/platforms-soclib.conf@1489 examples/common/platforms-soclib.conf] configuration file. It will let the kernel get the platform layout description from a FlattenedDeviceTree which will be built into the kernel.
    9191
    92 The build system also compiles the correct FlattenedDeviceTree from the platform name, see [source:trunk/mutekh/examples/common/Makefile@1488 examples/common/Makefile].
     92The build system also compiles the correct FlattenedDeviceTree from the platform name, see [source:trunk/mutekh/examples/common/Makefile@1489 examples/common/Makefile].
    9393
    9494The used FlattenedDeviceTree source file are in
    95 [source:trunk/mutekh/examples/common/@1488 examples/common/]:
    96 [source:trunk/mutekh/examples/common/pf_soclib_tutorial_arm.dts@1488 pf_soclib_tutorial_arm.dts].
     95[source:trunk/mutekh/examples/common/@1489 examples/common/]:
     96[source:trunk/mutekh/examples/common/pf_soclib_tutorial_arm.dts@1489 pf_soclib_tutorial_arm.dts].
    9797
    9898=== Configuring and compiling the application along with MutekH ===