diff options
-rwxr-xr-x | iso32 | 3 | ||||
-rwxr-xr-x | iso64 | 3 | ||||
-rwxr-xr-x | vasile | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -27,7 +27,8 @@ makeisox86 () { } bootcorex86 () { - echo "injecting live bootloader configuration" + git clone https://gitlab.com/rogentos/boot-core.git "$bootcorepath" + cp -avx "$bootcorefiles" "$isonamex86" } cleanupisox86 () { @@ -28,7 +28,8 @@ makeisox64 () { } bootcorex64 () { - echo "injecting live bootloader configuration" + git clone https://gitlab.com/rogentos/boot-core.git "$bootcorepath" + cp -avx "$bootcorefiles" "$isonamex64" } cleanupisox64 () { @@ -29,6 +29,8 @@ export local chrootprofile="eselect profile set 1" # arch independent iso variables export local kernelver="3.14.0-"$releasename"" +export local bootcorepath="/tmp/bootcore" +export local bootcorefiles="/tmp/bootcore/cdroot/*" # x64 specific build variables |