pyavitz / debian-image-builder

Debian image builder for single board computers
Other
143 stars 33 forks source link

bcm2711-*.img missing #1

Closed fdcon closed 3 years ago

fdcon commented 3 years ago

Have tried to build feature branch but get this error all the time

pyavitz commented 3 years ago

I am going to assume that you are using the dialog menu interface? Did you install all of the needed dependencies? Are you cross or native compiling? What OS are you running? Are you using docker?

I am running a build now to test if this error presents its self.

fdcon commented 3 years ago

Hi, Yes using the dialog menu interface. Have tried several different ways. Both using docker build and cross compile on both Debian (buster) and ubuntu 20.04.

Thanks

On 1 Mar 2021, at 22:52, Patrick notifications@github.com wrote:

I am going to assume that you are using the dialog menu interface? Did you install all of the needed dependencies? What OS are you running? Are you using docker?

I am running a build now to test if this error presents its self.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/pyavitz/debian-image-builder/issues/1#issuecomment-788323972, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGGSIA2W3OOGDT3JM557YHDTBQEA5ANCNFSM4YNHQLNQ.

pyavitz commented 3 years ago

You must be missing dependencies?

Screeenshot

Whilst inside debian-image-builder run: make ccompile for cross compiling make ncompile for native compiling

nano userdata.txt
Change: verbose=0 to verbose=1 (this will show errors in the stage1 script)

Check the output directory and make sure you see the uboot and *.deb (ls output/raspi4)

To start fresh run git pull followed by make purge-all Run each command individually: make raspi4-uboot make raspi4-kernel make rootfs make raspi4-image

fdcon commented 3 years ago

Hi, It wasn’t the dependencies. It was that I needed to do Make update

Thats the step that I missed. Thanks for looking at it.

Sorry for missing that step.

f.

On 2 Mar 2021, at 00:16, Patrick notifications@github.com wrote:

make ccompile cross compile make ncompile native compile

pyavitz commented 3 years ago

Ah yes, the docker builder. Happy you figured it out.