=== `build.py` This is responsible for building the "full" ISO, building UEFI support, etc. ==== genImg(_conf_) This function builds the http://tldp.org/HOWTO/SquashFS-HOWTO/creatingandusing.html[squashed filesystem^] images and, <>, signs them. ===== conf See <>. ==== genUEFI(_build_, _bdisk_) This function builds UEFI support for the ISO files. Returns the path of an embedded EFI bootable binary/ESP image. ===== build The <> of the configuration. ===== bdisk The <> of the configuration. ==== genISO(_conf_) Builds the full ISO image(s). Returns a dictionary of information about the built ISO file (see <>). ===== conf See <>. ==== displayStats(_iso_) Parses the output of e.g. <> and displays in a summary useful to the end-user. ===== iso A dictionary of information about the ISO file. This is typically: {'iso': {'name':<'Main' for the full ISO, 'Mini' for the mini ISO, etc.>}, {: 'sha':, 'file':, 'size':, 'type':, 'fmt': } } ==== cleanUp() Currently a no-op; this function is reserved for future usage to cleanup the build process automatically.