Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xtrinch/yocto-a10-olinuxino-lime-sato

Basic setup for poky distribution of yocto, enough to build the sato image for A10 olinuxino lime board
https://github.com/xtrinch/yocto-a10-olinuxino-lime-sato

olinuxino poky yocto

Last synced: 12 days ago
JSON representation

Basic setup for poky distribution of yocto, enough to build the sato image for A10 olinuxino lime board

Awesome Lists containing this project

README

        

# yocto-a10-olinuxino-lime

Yocto poky distribution sato image repo setup for A10 Olinuxino Lime development board.
(Sato image contains an X11 environment with a file browser, terminal, media player, ...)
The sato image is provided by the poky distirbution, this repo just sets everything up to
be able to build it.

Dependencies are the poky layer, openembedded layer and the sunxi layer,

Use yocto dunfell branches, kirkland has errors.

## Usage

- Activate env:
`source poky/oe-init-build-env build`

- Add layers:
`cd build`
`bitbake-layers add-layer ../meta-openembedded/meta-oe`
`bitbake-layers add-layer ../meta-sunxi`

- Verify layers:
`bitbake-layers show-layers`

- Menuconfig:
`bitbake -c menuconfig virtual/kernel`
`bitbake -c menuconfig busybox` # tooling

- Basic X11 terminal image:
`bitbake core-image-x11`

- Burn to sd
`build/tmp/deploy/images/olinuxino-a10lime/core-image-x11-olinuxino-a10lime.sunxi-sdimg`

- Basic desktop image:
`bitbake core-image-sato`

- Burn to sd
`build/tmp/deploy/images/olinuxino-a10lime/core-image-sato-olinuxino-a10lime.sunxi-sdimg`

- Other commands:
`bitbake -e | grep SOME_VARIABLE`