diff --git a/README.md b/README.md index 1047f85..b4b91ff 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,6 @@ TigerOS ``` git clone https://github.com/RITlug/TigerOS.git ``` -* Install [Mock](https://github.com/rpm-software-management/mock/wiki) according to your system. ### Build the ISO From the directory where you cloned this repo run the commands below. You may need to preface it with `sudo` if you do not have root privileges. ``` diff --git a/make-iso.sh b/make-iso.sh index c976c7d..cec0cd3 100644 --- a/make-iso.sh +++ b/make-iso.sh @@ -12,11 +12,12 @@ green=`tput setaf 2` reset=`tput sgr0` echo "${green}Welcome to the TigerOS build script${reset}" -mock -r fedora-25-x86_64 --init -mock -r fedora-25-x86_64 --copyin tigeros.ks ./tigeros.ks -mock -r fedora-25-x86_64 --install lorax-lmc-novirt git vim-minimal pykickstart svn -mock -r fedora-25-x86_64 --chroot "svn export https://github.com/RITlug/TigerOS/trunk/scripts/" +#mock -r fedora-25-x86_64 --init +#mock -r fedora-25-x86_64 --copyin tigeros.ks ./tigeros.ks +#mock -r fedora-25-x86_64 --install lorax-lmc-novirt git vim-minimal pykickstart svn +#mock -r fedora-25-x86_64 --chroot "svn export https://github.com/RITlug/TigerOS/trunk/scripts/" echo "${green}Beginning build process${reset}" -mock -r fedora-25-x86_64 --chroot "livemedia-creator --ks tigeros.ks --no-virt --resultdir /var/lmc --project TigerOS-Live --make-iso --volid TigerOS --iso-only --iso-name TigerOS.iso --releasever 25 --title TigerOS-live --macboot" -mock -r fedora-25-x86_64 --copyout /var/lmc/TigerOS.iso TigerOS.iso +livemedia-creator --ks tigeros.ks --no-virt --resultdir /var/lmc --project TigerOS-Live --make-iso --volid TigerOS --iso-only --iso-name TigerOS.iso --releasever 25 --title TigerOS-live --macboot +#mock -r fedora-25-x86_64 --chroot "livemedia-creator --ks tigeros.ks --no-virt --resultdir /var/lmc --project TigerOS-Live --make-iso --volid TigerOS --iso-only --iso-name TigerOS.iso --releasever 25 --title TigerOS-live --macboot" +#mock -r fedora-25-x86_64 --copyout /var/lmc/TigerOS.iso TigerOS.iso echo "${green}ISO saved to $(pwd)/TigerOS.iso${reset}"