Difference between revisions of "List IPK package depencencies"

From KoanSoftware Wiki
Jump to: navigation, search
(List IPK package depencencies)
(List IPK package depencencies)
 
Line 8: Line 8:
 
  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 and the dependencies are:
 +
 
 +
* iproute2
 +
* glibc (>= 2.29)
 +
* libsocketcan (>= 0.0.10)
 +
 
 +
These dependencies are seen from the runtime point of view.

Latest revision as of 14:28, 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 and the dependencies are:

  • iproute2
  • glibc (>= 2.29)
  • libsocketcan (>= 0.0.10)

These dependencies are seen from the runtime point of view.