/lib/firmware/carl9170fw/CMakeLists.txt is in linux-firmware 1.157.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 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)
|