Changes between Version 2 and Version 3 of Arch/Soclib/Tutorial


Ignore:
Timestamp:
Dec 22, 2009, 4:50:28 PM (14 years ago)
Author:
Nicolas Pouillon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Arch/Soclib/Tutorial

    v2 v3  
    3434to build a complete cross-compilation toolchain:
    3535
    36 The script is in [source:trunk/mutekh/tools/crossgen.mk@1183 tools/crossgen.mk]:
     36The script is in [source:trunk/mutekh/tools/crossgen.mk@1269 tools/crossgen.mk]:
    3737{{{
    3838 $ tools/crossgen.mk
     
    4646
    4747{{{
    48 svn co -r 1183 https://www-asim.lip6.fr/svn/mutekh/trunk/mutekh
     48svn co -r 1269 https://www-asim.lip6.fr/svn/mutekh/trunk/mutekh
    4949}}}
    5050
    5151=== Writing the example source code ===
    5252
    53 Note: This example is available directly from [source:trunk/mutekh/examples/hello@1183 examples/hello] directory in source tree.
     53Note: This example is available directly from [source:trunk/mutekh/examples/hello@1269 examples/hello] directory in source tree.
    5454
    5555 * Writing the source code in `hello.c`
     
    8888The MutekH configuration for the hello application is in the [source:trunk/mutekh/examples/hello/config examples/hello/config] file.
    8989
    90 This file only holds information about the application (here a simple pthread application) and relies upon files in the [source:trunk/mutekh/examples/common@1183 examples/common] directory for the platform definitions.
     90This file only holds information about the application (here a simple pthread application) and relies upon files in the [source:trunk/mutekh/examples/common@1269 examples/common] directory for the platform definitions.
    9191
    9292Have a look to the BuildSystem page for more information about configuration system and configuration file format.
     
    9696=== Platform description ===
    9797
    98 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@1183 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.
     98The 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@1269 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.
    9999
    100 The build system also compiles the correct FlattenedDeviceTree from the platform name, see [source:trunk/mutekh/examples/common/Makefile@1183 examples/common/Makefile].
     100The build system also compiles the correct FlattenedDeviceTree from the platform name, see [source:trunk/mutekh/examples/common/Makefile@1269 examples/common/Makefile].
    101101
    102102The used FlattenedDeviceTree source file are in