rauc / meta-rauc-community

Yocto/OpenEmbedded meta layer with examples for integration of RAUC, the embedded Linux A/B update framework
MIT License
48 stars 52 forks source link

yocto build error in do_image_wic phase (no kickstart files found) #16

Closed mibcat closed 3 years ago

mibcat commented 3 years ago

HI Leon,

I'm following your guide on Getting Started with RAUC on Raspberry Pi but struggling over a build error:

ERROR: core-image-minimal-1.0-r0 do_image_wic: No kickstart files from WKS_FILES were found: sdimage-dual-raspberrypi.wks. Please set WKS_FILE or WKS_FILES appropriately.

The local conf file contains the line

WKS_FILE = "sdimage-dual-raspberrypi.wks"

I found the file as "sdimage-dual-raspberrypi.wks.in" image

All repositories are on branch dunfell:

> vcs branch
.....
=== ./meta-openembedded (git) ===
dunfell
=== ./meta-raspberrypi (git) ===
dunfell
=== ./meta-rauc (git) ===
dunfell
=== ./meta-rauc-community (git) ===
dunfell
=== ./poky (git) ===
dunfell

I'm not very familiar with Yocto. So could you please give a hint to solve that problem.

Thanks a lot !

Best regards, Michael.

leon-anavi commented 3 years ago

Hi Michael,

Ah, sorry, over the time sdimage-dual-raspberrypi.wks was renamed to sdimage-dual-raspberrypi.wks.in. Could you please update WKS_FILE in your local.conf files as the one below?

WKS_FILE = "sdimage-dual-raspberrypi.wks.in"

I hope this will solved the issue you are experiencing.

Best regards, Leon

mibcat commented 3 years ago

Indeed this solves the issue - thank you very much for the fast help (and sorry for not testing it on my own - never thought the solution would be so self-evident :smiley: )