Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-03-29image: mfs: Do not set the size of the mfsEmmanuel Vadot
Do not force the mfs to be equal to the image size provided by the user. makefs can create a mfs with just the right size based on the directory so just use that.
2021-03-29image: Make image generation more quietEmmanuel Vadot
Add a -v that will make the pkg install more verbose. All makefs calls are now quiet, but we might want an option for this in the future
2021-03-29image: Split the different image type in their own fileEmmanuel Vadot
This is easier to maintain and read. Each image type have a _check, _prepare, _build and _generate function. _check validate that every needed options is passed. _prepare will create the disk image when it's needed (i.e. dump type etc..) _build will build the root image. _generate will finalize the image For each image type we can have subtype, expressed in the name with a +subtype So we now have a common path for usb+mfs and iso+mfs in the mfs creation for example.