Changes between Version 24 and Version 25 of QuickStartSoclib
- Timestamp:
- Feb 17, 2010, 8:21:44 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
QuickStartSoclib
v24 v25 35 35 === Writing the example source code === 36 36 37 Note: This example is available directly from {{{examples/hello_het}}} directory in source tree: [source:trunk/mutekh/examples/hello_het]38 39 37 The MutekH kernel source code is fully configurable and can be tweaked to adapt hardware platform 40 38 and application needs. Configuration is handled by a dedicated tool which check dependencies and … … 48 46 - Write the source configuration file, see BuildSystem for details. 49 47 48 Note: This example is available directly from {{{examples/hello_het}}} directory in source tree: [source:trunk/mutekh/examples/hello_het] 49 50 50 === Getting the cross-compilers === 51 51 … … 56 56 $ tools/crossgen.mk all TARGET=arm-unknown-elf 57 57 }}} 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.69 58 70 59 === Compiling the application along with MutekH ===