'Install a custom deb package as a bitbake recipe
meta-example
├── conf
│ └── layer.conf
└── recipes-example
└── debs
├── debs.bb
└── files
└── example.deb
I have a simple layer shown above. What should I write in debs.bb so that I can install the example.deb file during the build and that my final image contains the installed deb package. Further, what other changes do I need to make in my local.conf file.
Solution 1:[1]
Since you have written the recipe debs.bb which will install the required package as part of building debs. You need to add this package in the final target, so you need to add
debs in local.conf. (Make sure bblayers.conf includes your meta-example layer.)
IMAGE_INSTALL_append = " debs"
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
