DoktorC / a20-olinuxino-micro

Pure assembly (and not only) programs for the A20-OLinuXino-MICRO board

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction

Repo for several programs targetting the AllWinner A20-OLinuXino-MICRO board.

Currently, all the programs are run after u-boot board initialization.

Documentation

The following is a list of documents, and links where to find them, that I personally employ for development on the AllWinner A20-OLinuXino-MICRO board.

ARM References:

A20-OlinuXino-Micro References:

Toolchain

You can download the bare-metal GNU toolchain (Cortex-A family) directly from developer.arm.com

Configure

If you already have the toolchain's directory in your PATH, you're good to go. Otherwise, you have to specify the directory in the DIR variable of the top-level Makefile.

How to build

A top-level Makefile manages the building of each program.

To build all programs, simply type make or make all.

For building a subset of programs, simply append their folder's name to make:

make $(FOLDER_NAME_1) $(FOLDER_NAME_2) ... $(FOLDER_NAME_N)

For example:

make blink-led

builds the blink-led program.

About

Pure assembly (and not only) programs for the A20-OLinuXino-MICRO board

License:MIT License


Languages

Language:Assembly 60.6%Language:Makefile 39.4%