How to install apt-get to the Yocto Project image
The step-by-step
PACKAGE_CLASSES = "package_deb" PACKAGE_FEED_URIS = "http://<local-machine-ip>:5678" EXTRA_IMAGE_FEATURES += " package-management "$ bitbake core-image-minimal$ bitbake package-index$ cd build/tmp/deploy/deb $ python -m SimpleHTTPServer 5678$ sudo dd if=core-image-minimal.wic of=/dev/sdX$ apt-get update$ bitbake gstreamer1.0 $ bitbake package-index$ apt-get update $ apt-cache search gstreamer1.0 $ apt-get install gstreamer1.0
Understanding
Why this is a development only approach?
Last updated