summaryrefslogtreecommitdiff
path: root/iso64
blob: 5f4306a6d3ecd6a3dd2d0c6046642a37729e1343 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env bash

# Vasile needs root privileges and a proper kernel to run

kernelconfig
checkroot

makeisox64 () {
	# we really need this folder as quick as possible
	mkdir -p "$isosyncdirx64"
	# create an empty 15GB ext4 fs were our rootfs will stay
	dd if=/dev/zero of=""$isosyncdirx64".img" bs=50M count=300
	mkfs.ext4 ""$isosyncdirx64".img"
	# create live iso layout
	mkdir -p "$isostagingdirx64"
	mkdir -p "$isobootdirx64"
	mkdir -p "$isoefibootdirx64"
	mkdir -p "$isoliveosdirx64"
	mkdir -p "$isosupersquashdirx64"
	mkdir -p "$isolivesqfsdirx64"
	# mount && copy our core stage 4 image
	mount -t squashfs "$chrootx64" "$isostagingdirx64"
	mount -t ext4 ""$isosyncdirx64".img" "$isosyncdirx64"
	rsync -aHAXr --progress "$isostagingdirx64/" "$isosyncdirx64/"
	# copy our kernel into cdroot
	cp -avx ""$isosyncdirx64"/boot/"$isokernelnamex64"" ""$isorootdirx64"/boot/vmlinuz"
	# configure portage && give up control for package / desktop environment installation
	isostartx64
	isooverlaysx64
	isobuildsystemx64
	isochrootx64
	isostopx64
	# unmount rootfs before compression
	umount -l "$isosyncdirx64" > /dev/null 2>&1
	# move rootfs in place
	mv ""$isosyncdirx64".img"  "$isolivesqfsdirx64"
	# squash rootfs with best compression
	mksquashfs "$isosupersquashdirx64" ""$isorootdirx64"/squashfs.img" -b 1048576 -comp xz -Xdict-size 100%
	# move squashed rootfs in place
	mv ""$isorootdirx64/"squashfs.img" "$isoliveosdirx64"
}

bootcorex64 () {
	# configure live bootloader
	git clone https://gitlab.com/rogentos/boot-core.git "$bootcorepath"
	cp -avx "$bootcorefiles" "$isorootdirx64"
}

cleanupisox64 () {
	umount "$isostagingdirx64"
	rm -rf "$isosyncdirx64"
	rm -rf "$isostagingdirx64"
	rm -rf "$isosupersquashdirx64"
	rm -rf "$bootcorepath"
}

main () {
	chrootchecksumx64
	makeisox64
	bootcorex64
	cleanupisox64
}

main