uhd/images
2011-07-19 16:05:10 -07:00
..
.gitignore uhd-images: created makefile and cmake packager for the images 2010-08-06 18:49:23 -07:00
CMakeLists.txt images: create a tag file to associate the version number w/ images 2011-04-02 15:22:16 -07:00
Makefile uhd: images build script chmod recursive, files only 2011-07-19 16:05:10 -07:00
README usrp1: Fedora sdcc note and change fw error to warning (find should not error) 2010-08-31 13:08:50 -07:00

The images directory contains the following:
    - a Makefile for building firmware and fpga images
    - a CMake file for building an images package

The Makefile and build systems for the images are probably Unix specific.
Its best to build the images on a Unix system with standard build tools.
The CMake package target will create an images package for your system.

To build the images (unix):
    make clean
    make images

To build the package (unix):
    mkdir build
    cd build
    cmake -DCPACK_GENERATOR=<type> ../
    make package

The package generator types are described here:
    http://www.cmake.org/Wiki/CMake:CPackPackageGenerators

Fedora note:
    The sdcc binaries are prefixed with "sdcc-" which breaks the build.
    However, /usr/libexec/sdcc contains properly named sdcc binaries.
    export PATH=${PATH}:/usr/libexec/sdcc