kernel/build.bash

138 lines
2.8 KiB
Bash
Executable File

#!/usr/bin/bash
# This file is part of noxos and licensed under the MIT open source license
set -e
PROJECT_ROOT=$PWD
OVMF_PATH=" "
if [[ -f "/usr/share/ovmf/x64/OVMF.fd" ]]; then
OVMF_PATH="/usr/share/ovmf/x64/OVMF.fd"
elif [[ -f "/usr/share/OVMF/OVMF.fd" ]]; then
OVMF_PATH="/usr/share/OVMF/OVMF.fd"
elif [[ -f "$PROECT_ROOT/build/ovmf/x64/OVMF.fd" ]]; then
OVMF_PATH="$PROECT_ROOT/build/ovmf/x64/OVMF.fd"
else
echo "Could not find OVMF-file! Did search at:"
echo "1) /usr/share/ovmf/x64/OVMF.fd"
echo "2) /usr/share/OVMF/OVMF.fd"
echo "3) $PROECT_ROOT/build/OVMF/x64/OVMF.fd"
exit 255
fi
workspace_setup() {
echo " --> Setting up workspace"
mkdir -pv build
mkdir -pv build/cmake
echo ""
}
check_toolchain() {
echo " --> Checking Toolchain"
hash gcc
echo " |--> found gcc"
hash ld
echo " |--> found ld"
hash nasm
echo " |--> found nasm"
hash cmake
echo " |--> found cmake"
hash xorriso
echo " |--> found xorriso"
hash qemu-system-x86_64
echo " |--> found qemu"
echo " --> All checks passed"
}
kernel_build() {
echo " --> Building kernel"
cd build/cmake
cmake -S ../.. -B .
make
cd ../..
echo ""
}
libnoxos_build() {
cd libraries/libnoxos/
# bash build.sh
cd $PROJECT_ROOT
}
limine_install() {
echo " --> Installing Limine"
cd build
rm -rfv limine
echo " |--> Cloning repository"
git clone https://github.com/limine-bootloader/limine.git --branch=v4.x-branch-binary --depth=1
echo " |--> Compiling Limine"
make -C limine
cd ..
echo ""
}
generate_initial_ramdisk() {
echo " --> Generating initrd"
cd initrd
bash build.bash
cd $PROJECT_ROOT
tar -C initrd -cvf build/initrd.tar .
}
generate_image() {
echo " --> Generating Image"
cd build
rm -rfv iso
mkdir -pv iso
cp limine/limine-cd.bin iso/
cp limine/limine-cd-efi.bin iso/
cp limine/limine.sys iso/
cp ../limine.cfg iso/
cp initrd.tar iso/
cp cmake/kernel iso/kernel.elf
xorriso -as mkisofs -b limine-cd.bin \
-no-emul-boot -boot-load-size 4 -boot-info-table \
--efi-boot limine-cd-efi.bin \
-efi-boot-part --efi-boot-image --protective-msdos-label \
iso -o noxos.iso
./limine/limine-deploy noxos.iso
rm -rfv iso
cd ..
echo ""
}
cleanup_files() {
rm -Rf build/
}
echo "!=====[ NOXOS build script ]=====!"
case $1 in
"check")
check_toolchain
;;
"cleanup")
cleanup_files
;;
*)
workspace_setup
kernel_build
[ ! -d "build/limine" ] && limine_install
libnoxos_build
generate_initial_ramdisk
generate_image
;;
esac
echo "!=====[ Finished ]=====!"