Initial commit

This commit is contained in:
2025-12-31 18:40:05 +01:00
commit e96352919c
15 changed files with 522 additions and 0 deletions

13
scripts/docker-entrypoint.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
trap "echo 'Stopping...'; exit 0" SIGTERM
# source yocto
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "${SCRIPT_DIR}/setup-env.sh"
# add add source to all zsh instances
echo "souce \"${YOCTO_ROOT}(scripts/setup-env.sh\"" >> ~/.zshrc
# trap to keep container open in background
/bin/zsh
#while true; do sleep 1; done