- Create Universalisos type-1 hypervisor repository structure - Add comprehensive README.md with project objectives - Add MIT license - Add .gitignore for build artifacts and temporary files - Create BUILD_ENVIRONMENT.md with toolchain setup instructions This establishes the foundation for importing the complete PikeOS ecosystem as the reference architecture for our safety-critical cyber-physical systems. Co-Authored-By: Claude <noreply@anthropic.com>
76 lines
No EOL
654 B
Text
76 lines
No EOL
654 B
Text
# Build directories
|
|
build/
|
|
cmake-build-*/
|
|
out/
|
|
target/
|
|
|
|
# Object files
|
|
*.o
|
|
*.obj
|
|
*.ko
|
|
*.elf
|
|
*.bin
|
|
*.hex
|
|
*.exe
|
|
|
|
# Libraries
|
|
*.a
|
|
*.lib
|
|
*.so
|
|
*.dylib
|
|
*.dll
|
|
|
|
# Debug files
|
|
*.dSYM/
|
|
*.su
|
|
*.idb
|
|
*.pdb
|
|
|
|
# Configuration files
|
|
.sdkconfig
|
|
sdkconfig.backup
|
|
|
|
# Dependencies
|
|
.deps/
|
|
.dependency/
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Generated files
|
|
*.generated
|
|
*.gen.c
|
|
*.gen.h
|
|
|
|
# Documentation build
|
|
docs/_build/
|
|
docs/.doctrees/
|
|
|
|
# Test artifacts
|
|
test/results/
|
|
test/coverage/
|
|
*.log
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
tmp/
|
|
temp/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.bak
|
|
|
|
# XSD processing
|
|
xsd/generated/
|
|
xsd/compiled/
|
|
|
|
# Eclipse IDE
|
|
.metadata/
|
|
.settings/
|
|
.recommenders/ |