Compiling
After successfully fetching the code from the repository and installing GNU ARM toolchain you can compile the code.
Compilation is started simply by typing make in main directory. When make is run without parameters, it prints out list of available configurations. Configuration is selected by giving the configuration name as a parameter to make. After that, code is compiled by running make.
$ make ********************************************************* ********* configured for NOT CONFIGURED! ********* ********************************************************* make config-et-arm-stamp config for ET-ARM-STAMP board make config-at91sam7a3 config for AT91SAM7A3 board make config-pc config for PC, just testing make help $ make config-at91sam7a3 $ make
.. and in a short moment you have the binary.
27-May-2009: config-et-arm-stamp configuration is not implemented. PC and AT91SAM7A3 works.
UP to Howto