Skip to content
Discussion options

You must be logged in to vote

Hi @kowalski100,

  1. Yes, it is possible to extract the artifacts from the wic file, at least on Linux. The flow to do this has a couple of steps.
    First, create a loopback (virtual block) device using the wic file...
$ sudo losetup -vfP --show core-image-minimal-dev.wic

This will print out the new loop device number to the console, e.g., something like ...

/dev/loop31

Extract the HSS payload.bin from this... It is usually partition 2 -- you can use fdisk /dev/loopXX to be sure, where //dev/loopXX corresponds to the loop device number previously printed to the console.

For the rest of this example, I'm going to use /dev/loop31, but make sure to substitute the correct loop device for your s…

Replies: 4 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by hughbreslin
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #88 on June 13, 2022 15:20.