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.
11 lines
362 B
Docker
11 lines
362 B
Docker
# Leverage FDO CI fairy, but add pre-commit to it
|
|
FROM quay.io/freedesktop.org/ci-templates:ci-fairy-sha256-eb20531b68e57da06f4e631402fd494869b1529e2c4ad05cfe24ef3fb8038815
|
|
RUN apk add python3-dev
|
|
RUN apk add gcc
|
|
RUN apk add musl-dev
|
|
RUN apk add git
|
|
RUN apk add npm
|
|
RUN apk add rdfind
|
|
RUN apk add shellcheck
|
|
RUN pip install pre-commit --ignore-installed distlib
|