blob: b2f9e58067de2dd6eca1e286bbaa950f4114f544 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/usr/bin/env bash
# Vasile needs root privileges and a proper kernel to run
kernelconfig
checkroot
export local mainarch="x86"
export local isoname=""$releasename"-"$releaseversion"-"$mainarch""
export local coremnt="/tmp/"$isoname""
export local kernelver="3.14.0-"$releasename""
export local kernelname="kernel-genkernel-"$mainarch"-"$kernelver""
export local ramfsname="initramfs-genkernel-"$mainarch"-"$kernelver""
makeisox86 () {
# ISO layout
mkdir -p "$coremnt"
mkdir -p ""$isoname"/livecd"
mkdir -p ""$isoname"/boot"
# Mount && Sync squashed core (Kogaion stage4) into live environment
mount -t squashfs "$chrootx86" "$coremnt"
rsync -aHAXr --progress "$coremnt/" ""$isoname"/livecd/"
# Put our kernel and initramfs in place
cp -avx ""$isoname"/livecd/boot/"$kernelname"" "$isoname/"
cp -avx ""$isoname"/livecd/boot/"$ramfsname"" "$isoname/"
# Squash live environment
mksquashfs ""$isoname"/livecd" ""$isoname"/livecd.squashfs" -b 1048576 -comp xz -Xdict-size 100%
umount "$coremnt"
}
main () {
chrootchecksumx86
makeisox86
}
main
|