Compare commits

6 Commits

Author SHA1 Message Date
Thomas Klaehn
9ee1b794dd Manifest: Version bump honister 2021-12-08 20:22:58 +01:00
Thomas Klaehn
eb576c77b6 tmp
Change-Id: I621501b146de4440d9ad7087ce1cda88dc6d2346
2021-05-22 08:17:33 +02:00
Thomas Klaehn
b755f160a1 Add yocto security layer to support podman:
Change-Id: I0db4927dafb6a47f682eb920b1229e332f25824b
2021-01-28 13:47:00 +01:00
Thomas Klaehn
cf613e7086 linux-blackfinn: Switch to new yocto branch "gatesgarth"
Change-Id: I54c2e0b3f392b9de8f0148d84d5eb80fb2f416d8
2021-01-28 13:26:36 +01:00
tkl
f59377ceb6 README.md: Correct Build the Image section 2020-09-29 14:14:50 +00:00
Thomas Klaehn
4b4207be12 linux-blackfinn: Add raspberrypi4-64 support
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
Change-Id: I80f295c0eef49b1cd517cf3fe54154cb47fc63d9
2020-09-23 08:30:31 +02:00
2 changed files with 45 additions and 13 deletions

View File

@@ -11,6 +11,16 @@ repo init -u "https://git.blackfinn.de/yocto/linux-blackfinn.git"
repo sync
```
## Build environment
For details see <https://git.blackfinn.de/docker/oe-buildenv>.
### Execute
```shell
docker run -it --rm --network host -v=/var/lib/sss/pipes/:/var/lib/sss/pipes/:rw -v $(pwd):$(pwd) -w $(pwd) -u $(id -u $USER):$(id -g $USER) oe-buildenv /bin/bash
```
## Set Environment
```shell
@@ -22,13 +32,20 @@ Supported machineconfs:
* qemuarm
* beaglebone-yocto
* raspberrypi3-64
* raspberrypi4-64
## Build the Image
```shell
bitbake console-image
bitbake <image_name>
```
Supported images:
* console-image
* console-dev-image
* docker-image
## Flash the Image
### beaglebone-yocto
@@ -46,3 +63,16 @@ bmaptool copy --bmap \
/dev/<sd_card>
```
## opkg package handling
### Build index
```shell
bitbake package index
```
### Synchronize packages
```shell
rsync -avz --progress build/tmp/deploy/ipk/ /srv/files.blackfinn.de/data/yocto/gatesgarth/
```

View File

@@ -1,18 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<default sync-j="8"/>
<default sync-j="8"/>
<remote name="yo" fetch="git://git.yoctoproject.org"/>
<remote name="oe" fetch="git://git.openembedded.org"/>
<remote name="bf" fetch="https://git.blackfinn.de/yocto"/>
<remote name="yo" fetch="git://git.yoctoproject.org"/>
<remote name="oe" fetch="git://git.openembedded.org"/>
<remote name="gh" fetch="https://github.com"/>
<remote name="bf" fetch="https://git.blackfinn.de"/>
<project name="poky" remote="yo" revision="dunfell" path="layers/poky" clone-depth="1"/>
<project name="meta-openembedded" remote="oe" revision="dunfell" path="layers/meta-openembedded" clone-depth="1"/>
<project name="meta-raspberrypi" remote="yo" revision="dunfell" path="layers/meta-raspberrypi" clone-depth="1"/>
<project name="meta-virtualization" remote="yo" revision="dunfell" path="layers/meta-virtualization" clone-depth="1"/>
<project name="meta-blackfinn" remote="bf" revision="dunfell" path="layers/meta-blackfinn">
<linkfile dest="blackfinn-init-build-env" src="buildconf/blackfinn-init-build-env"/>
</project>
<project name="poky" remote="yo" revision="honister" path="layers/poky" clone-depth="1"/>
<project name="meta-openembedded" remote="oe" revision="honister" path="layers/meta-openembedded" clone-depth="1"/>
<project name="meta-raspberrypi" remote="yo" revision="master" path="layers/meta-raspberrypi" clone-depth="1"/>
<project name="meta-security" remote="yo" revision="honister" path="layers/meta-security" clone-depth="1"/>
<project name="meta-virtualization" remote="yo" revision="honister" path="layers/meta-virtualization" clone-depth="1"/>
<project name="yocto/meta-blackfinn" remote="bf" revision="master" path="layers/meta-blackfinn">
<linkfile dest="blackfinn-init-build-env" src="buildconf/blackfinn-init-build-env"/>
</project>
</manifest>