d50b942540
Commit Red Bear OS icon and loading background images to the branding recipe source. Update .gitignore to exclude fetched tarballs, build artifacts, and target/ dirs inside local/recipes/ while preserving tracked source code. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
53 lines
901 B
Plaintext
53 lines
901 B
Plaintext
/build/
|
|
/prefix/
|
|
.config
|
|
**/my_*
|
|
|
|
.idea/
|
|
.vs/
|
|
.vscode/
|
|
.devcontainer/
|
|
|
|
/repo
|
|
/web
|
|
/cookbook.toml
|
|
|
|
# Fetched source trees in mainline recipes (not our code in local/)
|
|
# Matches recipes/<category>/<name>/source/ but NOT local/recipes/*/source/
|
|
recipes/**/source
|
|
recipes/**/source.tmp
|
|
recipes/**/source-new
|
|
recipes/**/source-old
|
|
recipes/**/source.tar
|
|
recipes/**/source.tar.tmp
|
|
|
|
# Build artifacts — target/ dirs are everywhere
|
|
target
|
|
wget-log
|
|
|
|
# Explicitly track our source code (safety net)
|
|
!local/recipes/**/source/
|
|
!local/recipes/**/source/**
|
|
|
|
# But not fetched tarballs or build artifacts inside local/
|
|
local/recipes/**/source.tar
|
|
local/recipes/**/source.tar.tmp
|
|
local/recipes/**/target/
|
|
local/recipes/**/build/
|
|
|
|
# Vendor source trees (fetched, not our code)
|
|
**/amdgpu-source/
|
|
|
|
# Compiled objects
|
|
*.o
|
|
*.so
|
|
|
|
*.bin
|
|
*.fw
|
|
local/firmware/
|
|
*.lock
|
|
|
|
# Internal tooling
|
|
.sisyphus/
|
|
TASK_COMPLETION_SUMMARY.md
|