91ba8ed481
CRITICAL F18/F18b from NETWORKING-AND-DRIVERS-CODE-ASSESSMENT-2026-07-27.md §3.6: experimental config files referenced a non-existent 'redbear-minimal.toml' which would cause build failures. - config/redbear-wifi-experimental.toml: rename include to 'redbear-mini.toml' - config/redbear-bluetooth-experimental.toml: same CRITICAL F20 from §3.6: 30+ recipe.toml files declared 'version = 0.1.0' while their Cargo.toml says 'version = 0.3.1'. Per AGENTS.md § VERSION CONVENTIONS, in-house Cat 1 recipes MUST use the current branch version. - 71 recipe.toml files synced from 0.1.0 to 0.3.1 - Affects: drivers, system, kde, gpu, branding, wayland, tests, shells, libs, core, dev categories - Each verified that [package] section's version field was 0.1.0 before sync - The sync-versions.sh script in local/scripts/ provides the canonical mechanism; this commit applies the equivalent fix directly
22 lines
368 B
TOML
22 lines
368 B
TOML
[package]
|
|
name = "evdevd"
|
|
version = "0.3.1"
|
|
|
|
[source]
|
|
path = "source"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
set -ex
|
|
|
|
cookbook_cargo
|
|
|
|
mkdir -pv "$COOKBOOK_STAGE/usr/lib/init.d"
|
|
cp -v "$COOKBOOK_SOURCE/init.d/10_evdevd.service" "$COOKBOOK_STAGE/usr/lib/init.d/10_evdevd.service"
|
|
"""
|
|
|
|
[package.files]
|
|
"/usr/bin/evdevd" = "evdevd"
|
|
"/usr/lib/drivers/evdevd" = "evdevd"
|