b9874d0941
Add redbear-usb-storage-check in-guest binary that validates USB mass storage read and write I/O: discovers /scheme/disk/ devices, writes a test pattern to sector 2048, reads it back, verifies match, restores original content. Updates test-usb-storage-qemu.sh with write-proof verification step. Includes all accumulated Red Bear OS work: kernel patches, relibc patches, driver infrastructure, DRM/GPU, KDE recipes, firmware, validation tooling, build system hardening, and documentation.
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)
|
|
|