Software Archive
Read-only legacy content
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
17060 Discussions

How to inspect ipk packages

Matthias_H_Intel
Employee
906 Views

IPK archives which are used from "opkg" package manager are essentially archives which you can easily extract:

[bash]

$ mkdir package_contents

$ cp <package>.ipk package_contents

$ cd package_contents

$ ar x <package>.ipk

[/bash]

Will extract the contents into the folder package_contents. You'll find the contents now in data.tar.gz by calling

[plain]

$ ls

control.tar.gz  data.tar.gz  debian-binary  <package>.ipk

$ tar tf data.tar.gz

[...]

[/plain]

 

0 Kudos
0 Replies
Reply