kernel/build.sh

127 lines
3.2 KiB
Bash
Raw Normal View History

2023-01-24 21:39:50 +00:00
#!/usr/bin/bash
2023-02-27 15:24:45 +00:00
# Copyright 2023 Antifallobst <antifallobst@systemausfall.org>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the “Software”), to deal in
# the Software without restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
# Software, and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
2023-01-25 00:17:20 +00:00
set -e
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"
[ ! -d "/usr/share/ovmf/x64/" ] && echo "OVMF binaries not found!" && exit 255
echo " |--> found ovmf"
echo " --> All checks passed"
}
2023-01-25 00:17:20 +00:00
kernel_build() {
echo " --> Building kernel"
cd build/cmake
cmake -S ../.. -B .
2023-01-25 00:17:20 +00:00
make
cd ../..
echo ""
}
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"
tar -C ramdisk -cvf build/initrd.tar .
}
2023-01-25 00:17:20 +00:00
generate_image() {
echo " --> Generating Image"
cd build
2023-01-24 21:39:50 +00:00
2023-01-25 00:17:20 +00:00
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
2023-01-25 00:17:20 +00:00
cp cmake/kernel/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 \
2023-01-25 11:22:27 +00:00
iso -o noxos.iso
2023-01-25 00:17:20 +00:00
2023-02-05 13:39:35 +00:00
./limine/limine-deploy noxos.iso
2023-01-25 00:17:20 +00:00
rm -rfv iso
cd ..
echo ""
}
2023-01-25 11:22:27 +00:00
echo "!=====[ NoxOS build script ]=====!"
2023-01-24 21:39:50 +00:00
case $1 in
"check")
check_toolchain
;;
*)
workspace_setup
kernel_build
[ ! -d "build/limine" ] && limine_install
generate_initial_ramdisk
generate_image
;;
esac
2023-01-24 21:39:50 +00:00
echo "!=====[ Finished ]=====!"