Compare commits

6 Commits

Author SHA1 Message Date
Thomas Klaehn
dc06591ad0 manifest: Version bump zeus->dunfell
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
Change-Id: I80f9d12cebc214d0a26c6e86124652bf6ee461b0
2020-09-19 08:31:13 +02:00
Thomas Klaehn
e2d9de2f46 linux-blackfinn: Switch to new yocto branch "dunfell"
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
Change-Id: Ia50fdaf50a8e184f51dc598bcd11c6bbdcc4a479
2020-09-07 07:41:58 +02:00
tkl
d2f36e542e Merge branch 'default' of yocto/linux-blackfinn into master 2020-01-24 13:20:20 +00:00
Thomas Klaehn
97a5e50b28 Add virtualization layer
Change-Id: Ic2ae606235801faf919fb174e1d88ba386fa6682
2020-01-24 14:16:25 +01:00
Thomas Klaehn
7467006e06 linux-blackfinn: Switch to new yocto branch "zeus"
Change-Id: Iee2f24f52b50c3d1947b81f83214150b382ca74b
2019-11-29 20:26:51 +01:00
Thomas Klaehn
fc52f07f0b linux-blackfinn: Switch to new yocto branch "warrior"
Change-Id: Id43428285ad5797ccc8f92d8c748e0e5fe625304
2019-11-29 17:12:06 +01:00
2 changed files with 29 additions and 27 deletions

View File

@@ -5,42 +5,44 @@
## Get the repository ## Get the repository
```shell ```shell
$ mkdir yocto-bf mkdir yocto-bf
$ cd yocto-bf cd yocto-bf
$ repo init -u "https://git.blackfinn.de/yocto/linux-blackfinn.git" repo init -u "https://git.blackfinn.de/yocto/linux-blackfinn.git"
$ repo sync repo sync
``` ```
## Set Environment ## Set Environment
```shell ```shell
$ MACHINE=<machineconf> source blackfinn-init-build-env-init-build-env MACHINE=<machineconf> source blackfinn-init-build-env
``` ```
Supported machineconfs: Supported machineconfs:
* qemuarm * qemuarm
* qemuarm64
* qemumips
* qemumips64
* qemuppc
* qemux86
* qemux86-64
* beaglebone-yocto * beaglebone-yocto
* edgerouter
* genericx86
* genericx86-64
* mpc8315e-rdb
* raspberrypi3-64 * raspberrypi3-64
* bananapi-m3
## Build the Image ## Build the Image
```shell ```shell
$ bitbake console-image bitbake console-image
``` ```
## Flash the Image ## Flash the Image
```shell
$ dd if=tmp/deploy/images/beaglebone/<image_name> of=/dev/<sd_card> ### beaglebone-yocto
```shell
dd if=tmp/deploy/images/beaglebone-yocto/docker-image-beaglebone-yocto.wic of=/dev/<sd_card>
```
### raspberrypiX-64
```shell
bmaptool copy --bmap \
tmp/deploy/images/raspberrypiX-64/docker-image-raspberrypiX-64.wic.bmap \
tmp/deploy/images/raspberrypiX-64/docker-image-raspberrypiX-64.wic.bz2 \
/dev/<sd_card>
```

View File

@@ -5,14 +5,14 @@
<remote name="yo" fetch="git://git.yoctoproject.org"/> <remote name="yo" fetch="git://git.yoctoproject.org"/>
<remote name="oe" fetch="git://git.openembedded.org"/> <remote name="oe" fetch="git://git.openembedded.org"/>
<remote name="bf" fetch="https://git.blackfinn.de/yocto"/> <remote name="bf" fetch="https://git.blackfinn.de/yocto"/>
<remote name="sx" fetch="https://github.com/linux-sunxi"/>
<project name="poky" remote="yo" revision="thud" path="layers/poky" clone-depth="1"/> <project name="poky" remote="yo" revision="dunfell" path="layers/poky" clone-depth="1"/>
<project name="meta-openembedded" remote="oe" revision="thud" path="layers/meta-openembedded" 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="thud" path="layers/meta-raspberrypi" clone-depth="1"/> <project name="meta-raspberrypi" remote="yo" revision="dunfell" path="layers/meta-raspberrypi" clone-depth="1"/>
<project name="meta-sunxi" remote="sx" revision="thud" path="layers/meta-sunxi" 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="thud" path="layers/meta-blackfinn"> <project name="meta-blackfinn" remote="bf" revision="dunfell" path="layers/meta-blackfinn">
<linkfile dest="blackfinn-init-build-env" src="buildconf/blackfinn-init-build-env"/> <linkfile dest="blackfinn-init-build-env" src="buildconf/blackfinn-init-build-env"/>
</project> </project>
</manifest> </manifest>