aboutsummaryrefslogtreecommitdiff
path: root/run
blob: 64eaf0343f549fefef20a441c3ba3ab65d9a4e13 (plain) (blame)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#!/usr/bin/env sh

set -e

cd "$(dirname "$0")"

mode="${1}"
no_ask="${2}"
network="rtl8139"

qemu_with_flags() {
	if [ "${mode}" = "image" ] || [ "${mode}" = "image_debug" ]; then
		# TODO: Find out why kvm install is incredibly slow
		SDL_VIDEO_X11_DGAMOUSE=0 qemu-system-i386 -no-reboot -vga std -smp "$(nproc)" -serial mon:stdio -rtc base=localtime -m 256M -net nic,model=${network},macaddr=42:42:42:42:42:42 -net user "$@"
	else
		SDL_VIDEO_X11_DGAMOUSE=0 qemu-system-i386 -no-reboot -vga std -serial stdio -rtc base=localtime -m 256M -net nic,model=${network},macaddr=42:42:42:42:42:42 -net user "$@"
	fi
}

make_genext2fs() {
	if [ "$(genext2fs -V | awk '{print $2}')" = "1.4.2" ]; then
		echo "genext2fs is already the newest version"
	else
		if [ "$no_ask" != "-y" ]; then
			printf "Melvix requires the newest genext2fs version, would you like to install it? [y/n] "
			read -r answer
		fi
		if [ "$answer" != "${answer#[Yy]}" ] || [ "$no_ask" = "-y" ]; then
			echo "Building genext2fs..."
			git clone --quiet https://github.com/bestouff/genext2fs.git >/dev/null
			cd genext2fs >/dev/null
			git checkout --quiet 000e369 >/dev/null
			mv README.md README >/dev/null
			touch ChangeLog >/dev/null
			bash autogen.sh >/dev/null
			./configure >/dev/null
			sudo make install >/dev/null
			cd .. >/dev/null
			rm -rf genext2fs >/dev/null
			echo "Success!"
		else
			echo "This probably won't compile..."
		fi
	fi
}

make_cross() {
	if [ ! -d "./cross/" ]; then
		# Create directory
		mkdir -p cross
		cd cross
		DIR=$(pwd)

		# Get sources
		mkdir "${DIR}/src" && cd "${DIR}/src"
		echo "Downloading..."
		curl -sSL "https://ftp.gnu.org/gnu/binutils/binutils-2.34.tar.xz" | tar xJ
		curl -sSL "https://ftp.gnu.org/gnu/gcc/gcc-9.3.0/gcc-9.3.0.tar.xz" | tar xJ

		# Prepare compiling
		mkdir -p "${DIR}/opt/bin"
		export PREFIX="${DIR}/opt"
		export TARGET=i686-elf
		export PATH="$PREFIX/bin:$PATH"

		# Compile binutils
		mkdir "${DIR}/src/build-binutils" && cd "${DIR}/src/build-binutils"
		../binutils-2.34/configure --target="$TARGET" --prefix="$PREFIX" --with-sysroot --disable-nls --disable-werror
		make
		make install

		# Compile GCC
		mkdir "${DIR}/src/build-gcc" && cd "${DIR}/src/build-gcc"
		../gcc-9.3.0/configure --target="$TARGET" --prefix="$PREFIX" --disable-nls --enable-languages=c,c++ --without-headers
		make all-gcc
		make all-target-libgcc
		make install-gcc
		make install-target-libgcc

		cd "${DIR}/.."
	else
		cd cross
		DIR=$(pwd)
		export PREFIX="${DIR}/opt"
		export TARGET=i686-elf
		export PATH="$PREFIX/bin:$PATH"
		cd ..
	fi
}

make_build() {
	rm -rf ./disk/bin/ ./disk/boot/
	mkdir -p build/ disk/bin/ disk/boot/

	echo "Building..."
	cd build/
	cmake .. >/dev/null
	make
	cd ..

	# Copy files
	nasm src/entry.asm -f bin -o disk/boot/boot.bin
	cp build/melvix.bin disk/boot/

	# Create disk image
	make_genext2fs
	/usr/local/bin/genext2fs -B 1024 -d disk/ -U -N 1024 -b 65536 build/disk.img
	dd if=disk/boot/boot.bin of=build/disk.img conv=notrunc

	printf "Build finshed successfully!\n\n"
}

make_test() {
	qemu_with_flags -hdb build/disk.img
}

make_disasm() {
	objdump -drwC -Mintel build/kernel.bin --visualize-jumps=color | less -R
}

make_sync() {
	rm tags compile_commands.json
	ctags -R --exclude=.git --exclude=build --exclude=iso --exclude=cross .
	mkdir -p build
	cd build
	cmake .. >/dev/null
	mv compile_commands.json ..
	cd ..
}

make_tidy() {
	shfmt -w ./run
	find ./src -type f -regex '.*\.\(c\|h\)' -exec clang-format -i {} \;
	# This may or may not work
	find ./src -type f -print0 | xargs -0 -l -i sh -c '[ -n "$(tail -c1 {})" ] && printf "\n" >> {}'
}

make_clean() {
	rm -rf ./disk/bin/ ./disk/boot/ ./build/
}

if [ "${mode}" = "cross" ]; then
	make_cross
elif [ "${mode}" = "build" ]; then
	make_cross
	make_clean
	make_build
elif [ "${mode}" = "clean" ]; then
	make_clean
elif [ "${mode}" = "test" ]; then
	make_cross
	make_build
	make_sync &
	make_test
elif [ "${mode}" = "again" ]; then
	make_test
elif [ "${mode}" = "disasm" ]; then
	make_cross
	make_build
	make_disasm
elif [ "${mode}" = "sync" ]; then
	make_sync
elif [ "${mode}" = "tidy" ]; then
	make_tidy
elif [ "${mode}" = "" ]; then # TODO: Prevent code duplication in build script via functions?
	make_cross
	make_build
	make_sync &
	make_test
else
	echo "Please use the following syntax:"
	echo "./run {cross | build | clean | test | disasm | sync | tidy} [-y]"
	echo "The default option is 'test'"
fi