On Tue, Oct 01, 2013 at 04:02:06PM -0400, Gene Czarcinski wrote: > I am not sure where to ask this question. If it is not this list, > please point me to the correct one. > > I decided that I wanted to get ahead of things and be able to boot a > version which was not currently available as an iso image. After > some googling, I found this: > > https://fedoraproject.org/wiki/How_to_create_a_Fedora_install_ISO_for_testing That's one way. If all you need is a boot.iso you can run lorax to generate that. You also don't really need to use mock unless you are trying to build on a different release, and even then you can run into a variety of problems. To make a boot.iso using lorax (from the git repo) you can do this: #!/bin/sh sudo setenforce 0 sudo PATH=./src/sbin:$PATH PYTHONPATH=./src/ ./src/sbin/lorax -p Fedora -v 20 -r 20 \ -s http://dl.fedoraproject.org/pub/fedora/linux/development/20/x86_64/os/ \ --logfile=lorax-build.log --config ~/tmp/rawhide.conf --tmp /tmp/ /tmp/f20-lorax/ |& tee lorax-build-out.log sudo setenforce 1 The rawhide.conf file points to the lorax templates: [lorax] sharedir = /home/foo/projs/lorax/share/ If you are using lorax from the installed package you can skip using --config and if you don't have a pile of memory drop the --tmp arg as well. -- Brian C. Lane | Anaconda Team | IRC: bcl #anaconda | Port Orchard, WA (PST8PDT)
Attachment:
pgp5etCx7210V.pgp
Description: PGP signature
_______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list