mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
synced 2024-12-13 10:48:48 +00:00
32eb7c7307
GPLv2 firmware for carl9170, Atheros AR9170 802.11 draft-n USB driver. Cc: Christian Lamparter <chunkeey@googlemail.com> Cc: David Woodhouse <dwmw2@infradead.org> Cc: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
20 lines
416 B
CMake
20 lines
416 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(carl9170)
|
|
|
|
#if you don't want the full compiler output, remove the following line
|
|
#set(CMAKE_VERBOSE_MAKEFILE ON)
|
|
|
|
include("config.cmake")
|
|
|
|
add_subdirectory(carlfw)
|
|
|
|
if (CONFIG_CARL9170FW_BUILD_MINIBOOT)
|
|
add_subdirectory(minifw)
|
|
endif (CONFIG_CARL9170FW_BUILD_MINIBOOT)
|
|
|
|
if (CONFIG_CARL9170FW_BUILD_TOOLS)
|
|
add_subdirectory(tools)
|
|
endif (CONFIG_CARL9170FW_BUILD_TOOLS)
|
|
|