summaryrefslogtreecommitdiff
path: root/iso32
blob: 9445f864b7aab5dfc01818e2837fc4aa021c5384 (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
#!/usr/bin/env bash

# Vasile needs root privileges and a proper kernel to run

kernelconfig
checkroot

makeisox86 () {
	# we really need this folder as quick as possible
	mkdir -p "$isosyncdirx86"
	# create an empty 15GB ext4 fs were our rootfs will stay
	dd if=/dev/zero of=""$isosyncdirx86".img" bs=50M count=300
	mkfs.ext4 ""$isosyncdirx86".img"
	# create live iso layout
	mkdir -p "$isostagingdirx86"
	mkdir -p "$isobootdirx86"
	mkdir -p "$isoliveosdirx86"
	mkdir -p "$isosupersquashdirx86"
	mkdir -p "$isolivesqfsdirx86"
	# mount && copy our core stage 4 image
	mount -t squashfs "$chrootx86" "$isostagingdirx86"
	mount -t ext4 ""$isosyncdirx86".img" "$isosyncdirx86"
	rsync -aHAXr --progress "$isostagingx86/" "$isosyncdirx86/"
	# copy our kernel into cdroot
	cp -avx ""$isosyncdirx86"/boot/"$isokernelnamex86"" ""$isorootdirx86"/boot/vmlinuz"
	# configure portage && give up control for package / desktop environment installation
	isostartx86
	isooverlaysx86
	isobuildsystemx86
	isochrootx86
	isostopx86
	# umount rootfs before compression
	umount -l "$isosyncdirx86" > /dev/null 2>&1
	# move rootfs in place
	mv ""$isosyncdirx86".img"  "$isolivesqfsdirx86"
	# squash rootfs with best compression
	mksquashfs "$isosupersquashdirx86" ""$isorootdirx86"/squashfs.img" -b 1048576 -comp xz -Xdict-size 100%
	# move squashed rootfs in place
	mv ""$isorootdirx86"/squashfs.img" "$isoliveosdirx86"
}

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

cleanupisox86 () {
	umount "$isostagingdirx86"
	rm -rf "$isosyncdirx86"
	rm -rf "$isostagingdirx86"
	rm -rf "$bootcorepath"
	rm -rf "$isosupersquashdirx86"
}

main () {
	chrootchecksumx86
	makeisox86
	bootcorex86
	cleanupisox86
}

main