-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
idea: customisation starting from img file? #486
Comments
In case I wasn't clear what is my idea: I would like to come up with script that:
So for example if one would like to start with
(more or less) |
While thinking along the same of lines earlier, I was thinking maybe it's worth having a tool that runs pi-gen stages on a flexible target. Then pi-gen can wrap around that tool. I'm having a bit of a hard time imagining how to fit your idea into the current workflow and source in a clean way. It's a good idea and I'm sure it's perfectly doable, I just can't spend time on it right now. As is, pi-gen serves its primary purpose or building the official release images well enough and time is a bit limited. As much as I'd love to whip it into shape a bit more and make it more flexible for other use cases, I'm can't currently justify it. I'd strongly encourage a community fork or an alternative tool to fulfil those use cases. If you send an appropriate PR, I can take a look. It would need to be a generic option, not something specific to the Docker script. Personally, I think splitting the functionality of pi-gen into a stage runner, exporter and a wrapper to tie them together is the way to go to maximise flexibility, but it's too much of a change to look at right now. |
Hi @XECDesign, thanks a lot for the reply. I'm glad you like the idea and I completely understand the time problems. I am happy to try something out in a fork, and if it proves to be working we can think about bringing it back here. Would you help me with some reference/example what is a most correct way to extract |
I don't know about it being correct or optimal, but my attempt is in the export-noobs stage, which pretty much does this already. https://github.com/RPi-Distro/pi-gen/blob/master/export-noobs/prerun.sh |
I'm probably looking for something quite similar. Currently also looking at https://github.com/Nature40/pimod |
pimod looks like the better choice because that seems to be exactly what it's for. |
One other solutions I've also seen out there was https://www.pibakery.org/ |
This would be of tremendous value and I would like to contribute in any way I can. The use case I am after is pretty basic. Just the ability to have a script generating a batch of images with changed hostname, passwords and alter config files here and there from a base image would simplify my deployments so much. I had a look at https://github.com/RPi-Distro/pi-gen/blob/master/export-noobs/prerun.sh as suggested and I believe it can be simplified a bit using the -P option of losetup. pimod and pibakery look interesting but i think having this feature directly in pi-gen is useful. |
Yeah, it was written before the -P parameter was widely available. |
See my PR, it tries to address this exact issue but takes it a step further, enabling custom config and Github Actions based builds too. |
In the past I used
pi-gen
to build a custom Raspbian image by adding stages with my customisations.Though it was quite easy to do it this way I always find it a bit annoying that I had to go through the full build process.
Did you consider having option to run some custom stages with
rootfs
extracted from specifiedimg
file?I did a very naive attempt of doing so by modifying Dockerfile used in the build process
hoping that
copy_previous
will just do right thing if I havePREV_ROOTFS_DIR
set, and it kind-of does but for some reason things fail onon_chroot
stages withexecve /bin/bash failed!
Not sure if there is something in
stage0
that I am missing or my procedure of extractingrootfs
from img file was incorrect.The text was updated successfully, but these errors were encountered: