List IPK package depencencies: Difference between revisions
Jump to navigation
Jump to search
(List IPK package depencencies) |
|||
| Line 4: | Line 4: | ||
the dependency list is shown using the '''oe-pkgdata-util''' command provided by Yocto Project. | the dependency list is shown using the '''oe-pkgdata-util''' command provided by Yocto Project. | ||
$ oe-pkgdata-util read-value RDEPENDS canutils | $ oe-pkgdata-util read-value RDEPENDS canutils | ||
iproute2 glibc (>= 2.29) libsocketcan (>= 0.0.10) | iproute2 glibc (>= 2.29) libsocketcan (>= 0.0.10) | ||
For example the command above lists the dependencies of the ''' canutils''' package. | For example the command above lists the dependencies of the ''' canutils''' package. | ||
Revision as of 14:27, 24 August 2020
List IPK package depencencies
Very often you may need to detect the runtime dependencies having a .IPK package. the dependency list is shown using the oe-pkgdata-util command provided by Yocto Project.
$ oe-pkgdata-util read-value RDEPENDS canutils iproute2 glibc (>= 2.29) libsocketcan (>= 0.0.10)
For example the command above lists the dependencies of the canutils package.