aboutsummaryrefslogtreecommitdiff
path: root/build.sh
blob: 1c7de3c2adf8af6a9e12ff61e5021682a5fedd3f (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
#!/usr/bin/env sh
# Builds the operating system image

# Install and source cross compiler if not already installed
. ./cross.sh

# Create build directories
rm -rf ./build/ ./iso/
mkdir ./build/

# Assemble ASM files
nasm -f elf ./src/kernel/boot.asm -o ./build/boot.o

# Make all C files
files=""
find ./src/kernel/ -name \*.c >./build/tmp
while read -r line; do
  stripped=$(echo "${line}" | sed -r 's/\//_/g')
  stripped=${stripped#??????}
  stripped=${stripped%%?}o
  i686-elf-gcc -c ./"${line}" -o ./build/"${stripped}" -std=gnu99 -ffreestanding -O2 -Wall -Wextra
  files="${files} ./build/${stripped}"
done <./build/tmp
rm ./build/tmp

# shellcheck disable=SC2086
# Shellcheck suppression is needed because gcc would think that $files is one file
i686-elf-gcc -T ./src/kernel/linker.ld -o ./build/melvix.bin -ffreestanding -O2 -nostdlib ./build/boot.o $files -lgcc

# Testing
if grub-file --is-x86-multiboot ./build/melvix.bin; then
  echo Multiboot confirmed
else
  echo Melvix has errors and won\'t be able to multi boot!
  exit
fi

# Create ISO
mkdir -p ./iso/boot/grub
cp ./build/melvix.bin ./iso/boot/
cp ./src/kernel/grub.cfg ./iso/boot/grub/
grub-mkrescue -o ./build/melvix.iso ./iso/

# Run ISO
qemu-system-x86_64 -soundhw pcspk -enable-kvm -cdrom ./build/melvix.iso