Skip to content

VCTLabs/vct-clonepi-bsp-platform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

VCT Allwinner arm32/64 BSP Manifest

The various branches available here will configure the repo build for the appropriate branches in each repository and clone them in the typical fashion, ie, with either poky or oe-core as the parent directory and the additional metadata layers underneath (as documented in the upstream setup).

The main branches build either the poky reference distro or oe-core with your choice of distro. Note that oe-core will build "distroless" by default, however, you can set DISTRO = "vctlabs" in your local.conf if you want the mainline kernel to be the default.

machine variants

Current machine variants on dunfell branch:

  • select orangepi, nanopi, bananapi devices
  • various a20 - a50 Allwinner-based devices
  • see meta-sunxi/conf/machine for default MACHINE names

Build branches

Select the build branch using the github branch button above, which will select the correct manifest branches and BSP/metadata using the respective branches in this repo as shown below.

Follow the steps in the readme for the branch you select, then use the same branch name with the "repo init" command. This will checkout the corresponding branch HEAD commits on the configured branch for each repository.

You can get status and more using the repo command in the top level directory once you've run the repo init and repo sync commands. Try:

$ repo info
$ repo show
$ repo status

See the default.xml file for repo and branch details; if this is the 'main' branch, then the following example is generic so go back and select a build branch from this repo.

Install the repo utility

$ mkdir ~/bin
$ curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$ chmod a+x ~/bin/repo

Download the BSP source

$ PATH=${PATH}:~/bin
$ mkdir clonepi-bsp
$ cd clonepi-bsp
$ repo init -u https://github.com/VCTLabs/vct-clonepi-bsp-platform -b oe-dunfell
$ repo sync

At the end of the above commands you have all the metadata you need to start building with poky and meta-oe on dunfell branches.

To start a simple image build for a specific target:

$ cd oe-core
$ source ./oe-init-build-env build-dir  # you choose name of build-dir
$ ${EDITOR} conf/local.conf             # set MACHINE to <your_machine> (see above)
$ bitbake core-image-minimal

In the above example, <your_machine> should be something like orange-pi-pc (an Allwinner H3).

You can use any directory (build-dir above) to host your build. The above commands will build an image for <your_machine> using the BSP machine config and the default mainline linux kernel.

The full source code tree is checked out in the bsp dir above, and the build output dir will default to oe-core/build-dir unless you choose a different path above.

Source code

Download the manifest source here:

$ git clone https://github.com/VCTLabs/vct-clonepi-bsp-platform

Using Development and Testing/Release Branches

Replace the repo init command above with one of the following:

For developers - gatesgarth

$ repo init -u https://github.com/VCTLabs/vct-clonepi-bsp-platform -b oe-gatesgarth

For intrepid developers and testers - master

Patches are typically merged into master-next and then are merged into master after a testing and comment period. It’s possible that master has something you want or need. But it’s also possible that using master breaks something that was working before. Use with caution.

$ repo init -u https://github.com/VCTLabs/vct-clonepi-bsp-platform -b oe-master

About

Poky/OE build manifests for *pi boards (eg, orange, nano, banana, even raspberry)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published