Thomas Klaehn
1fd128bb12
Change-Id: Idf0a78d59101428a16a3cc88198cc7fab75950b1 Signed-off-by: Thomas Klaehn <tkl@blackfinn.de>
29 lines
384 B
Markdown
29 lines
384 B
Markdown
# Yocto
|
|
|
|
...
|
|
|
|
## Get the repository
|
|
|
|
```shell
|
|
$ mkdir yocto-bf
|
|
$ cd yocto-bf
|
|
$ repo init -u "https://git.blackfinn.de/yocto/linux-blackfinn.git"
|
|
$ repo sync
|
|
```
|
|
|
|
## Set Environment
|
|
|
|
```shell
|
|
$ source [bbb/rpi]-init-build-env
|
|
```
|
|
|
|
## Build the Image
|
|
```shell
|
|
$ bitbake console-image
|
|
```
|
|
|
|
## Flash the Image
|
|
```shell
|
|
$ dd if=tmp/deploy/images/beaglebone/<image_name> of=/dev/<sd_card>
|
|
|