imgcreate/live.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-)
New commits: commit 2e04352bdf3d1770c242e12e2d3b8461660e48eb Author: Jeroen van Meeuwen (Ergo Project) <[email protected]> Date: Mon Jan 31 10:10:27 2011 -0700 Bad karma commit reverted; The option to boot from a local drive *MUST* exist as 99.9% of our consumers have default desktop hardware configurations. If you seek to fix and/or improve, perhaps look at chain.c32's append hd 0 0 instead of the localboot hexadecimal addressing. Revert "Remove boot from local drive option" This reverts commit 150ce6e01e6d99764132220dd4b3983d8df0f812. diff --git a/imgcreate/live.py b/imgcreate/live.py index c26ec2c..60cd1de 100644 --- a/imgcreate/live.py +++ b/imgcreate/live.py @@ -555,7 +555,10 @@ menu hiddenrow 5 """ def __get_local_stanza(self, isodir): - return "" + return """label local + menu label Boot from local drive + localboot 0xffff +""" def _configure_syslinux_bootloader(self, isodir): """configure the boot loader""" commit fe20e690f2f1a14201db8bc95056746f07e4e7e7 Author: Jeroen van Meeuwen (Ergo Project) <[email protected]> Date: Mon Jan 31 10:05:59 2011 -0700 Really switch the default compression type, not just the default cli option value diff --git a/imgcreate/live.py b/imgcreate/live.py index cc8c630..c26ec2c 100644 --- a/imgcreate/live.py +++ b/imgcreate/live.py @@ -46,7 +46,7 @@ class LiveImageCreatorBase(LoopImageCreator): """ LoopImageCreator.__init__(self, ks, name, fslabel=fslabel, releasever=releasever) - self.compress_type = "gzip" + self.compress_type = "xz" """mksquashfs compressor to use.""" self.skip_compression = False -- livecd mailing list [email protected] https://admin.fedoraproject.org/mailman/listinfo/livecd
