Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
elphel393-docker
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Elphel
elphel393-docker
Commits
44d06755
Commit
44d06755
authored
Mar 01, 2026
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add one-command Yocto shell helper
parent
8c697664
Pipeline
#3694
canceled with stages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
+24
-0
README.md
README.md
+8
-0
yocto_shell.sh
scripts/yocto_shell.sh
+16
-0
No files found.
README.md
View file @
44d06755
...
...
@@ -54,6 +54,14 @@ cd poky
bitbake u-boot device-tree linux-xlnx core-image-elphel393
```
Open a ready-to-use Yocto shell (env preloaded):
```
bash
./scripts/yocto_shell.sh
# then:
bitbake linux-xlnx
```
Bootstrap workspace in developer mode:
```
bash
...
...
scripts/yocto_shell.sh
0 → 100755
View file @
44d06755
#!/usr/bin/env bash
set
-euo
pipefail
SCRIPT_DIR
=
"
$(
cd
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
&&
pwd
)
"
"
${
SCRIPT_DIR
}
/run_docker.sh"
bash
-lc
'
set -e
cd /work/elphel393/poky
set +u
. ./oe-init-build-env build
set -u
export DL_DIR=/cache/downloads
export SSTATE_DIR=/cache/sstate-cache
echo "Yocto shell is ready. Run: bitbake <target>"
exec bash -i
'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment