Page 1 of 1

FAQ_MA35D1_Add an Open Source Library to Image

Posted: 05 Dec 2022, 19:44
by ytliu6
Yocto and Buildroot provide many open source package and library for quickly compile. You don’t need to compile those package alone.

Buildroot

1. Enter Buildroot menuconfig
$ make menuconfig

2. If you don’t know where the package is, type “ / ” to search

3. Compile, re-pack the Image, and program it.
$ make

Yocto

1. Search the package you want to build
$ bitbake –s | grep XXX

2. Add the package name to ~/build/conf/local.conf
IMAGE_INSTALL_append += “ XXX “

3. Compile, re-pack the Image, and program it.
$ bitbake nvt-image-qt5

#MA35D1 #Package #Library