2020-09-13 15:36:18 +03:00
|
|
|
CC = cc
|
2020-12-31 06:39:18 +03:00
|
|
|
OBJCOPY = objcopy
|
2020-09-04 06:21:58 +03:00
|
|
|
CFLAGS = -O2 -pipe -Wall -Wextra
|
2020-12-31 06:39:18 +03:00
|
|
|
PREFIX = /usr/local
|
|
|
|
DESTDIR =
|
2021-03-02 12:23:43 +03:00
|
|
|
TARGET = bios
|
2020-12-31 06:39:18 +03:00
|
|
|
|
2020-09-18 22:38:59 +03:00
|
|
|
PATH := $(shell pwd)/toolchain/bin:$(PATH)
|
2020-07-06 23:59:28 +03:00
|
|
|
|
2021-02-25 03:24:54 +03:00
|
|
|
.PHONY: all clean install tinf-clean bootloader bootloader-clean distclean stage23 stage23-clean decompressor decompressor-clean toolchain test.hdd echfs-test ext2-test fat32-test iso9660-test
|
2020-12-31 06:39:18 +03:00
|
|
|
|
2021-02-25 03:24:54 +03:00
|
|
|
all: bin/limine-install
|
2020-12-31 06:39:18 +03:00
|
|
|
|
2021-02-25 03:24:54 +03:00
|
|
|
bin/limine-install: limine-install.c limine-hdd.o
|
|
|
|
$(CC) $(CFLAGS) -std=c11 limine-hdd.o limine-install.c -o $@
|
2020-12-31 06:39:18 +03:00
|
|
|
|
2021-02-25 03:24:54 +03:00
|
|
|
limine-hdd.o: bin/limine-hdd.bin
|
|
|
|
$(OBJCOPY) -B i8086 -I binary -O default bin/limine-hdd.bin $@
|
2021-02-21 01:04:06 +03:00
|
|
|
|
2020-12-31 06:39:18 +03:00
|
|
|
clean:
|
2021-02-25 03:24:54 +03:00
|
|
|
rm -f limine-hdd.o
|
2020-12-31 06:39:18 +03:00
|
|
|
|
|
|
|
install: all
|
|
|
|
install -d $(DESTDIR)$(PREFIX)/bin
|
|
|
|
install -s limine-install $(DESTDIR)$(PREFIX)/bin/
|
2021-02-25 10:11:52 +03:00
|
|
|
install -d $(DESTDIR)$(PREFIX)/share
|
|
|
|
install -m 644 bin/limine.sys $(DESTDIR)$(PREFIX)/share/
|
|
|
|
install -m 644 bin/limine-cd.bin $(DESTDIR)$(PREFIX)/share/
|
|
|
|
install -m 644 bin/limine-pxe.bin $(DESTDIR)$(PREFIX)/share/
|
2020-12-31 06:39:18 +03:00
|
|
|
|
2021-03-02 12:23:43 +03:00
|
|
|
ifeq ($(TARGET), bios)
|
2021-02-25 03:24:54 +03:00
|
|
|
bootloader: | decompressor stage23
|
|
|
|
mkdir -p bin
|
|
|
|
cd stage1/hdd && nasm bootsect.asm -fbin -o ../../bin/limine-hdd.bin
|
|
|
|
cd stage1/cd && nasm bootsect.asm -fbin -o ../../bin/limine-cd.bin
|
|
|
|
cd stage1/pxe && nasm bootsect.asm -fbin -o ../../bin/limine-pxe.bin
|
|
|
|
cp stage23/limine.sys ./bin/
|
2021-03-02 12:23:43 +03:00
|
|
|
else ifeq ($(TARGET), uefi)
|
|
|
|
bootloader: stage23
|
|
|
|
mkdir -p bin
|
|
|
|
cp stage23/BOOTX64.EFI ./bin/
|
|
|
|
endif
|
2020-09-14 21:02:36 +03:00
|
|
|
|
2021-02-25 03:47:48 +03:00
|
|
|
bootloader-clean: stage23-clean decompressor-clean
|
2020-09-13 16:47:43 +03:00
|
|
|
|
2021-02-25 03:47:48 +03:00
|
|
|
distclean: clean bootloader-clean test-clean
|
2021-02-25 08:12:32 +03:00
|
|
|
rm -rf bin stivale toolchain
|
2020-10-04 01:01:05 +03:00
|
|
|
|
2021-01-15 07:14:20 +03:00
|
|
|
stivale:
|
|
|
|
git clone https://github.com/stivale/stivale.git
|
|
|
|
|
2021-03-02 12:23:43 +03:00
|
|
|
stage23: stivale
|
|
|
|
cd tinf && rm -rf *.o *.d
|
|
|
|
$(MAKE) -C stage23 all TARGET=$(TARGET)
|
2020-09-13 16:20:53 +03:00
|
|
|
|
2021-02-25 03:24:54 +03:00
|
|
|
stage23-clean:
|
|
|
|
$(MAKE) -C stage23 clean
|
2020-09-14 20:32:11 +03:00
|
|
|
|
2021-03-02 12:23:43 +03:00
|
|
|
decompressor:
|
|
|
|
cd tinf && rm -rf *.o *.d
|
2020-09-14 20:32:11 +03:00
|
|
|
$(MAKE) -C decompressor all
|
|
|
|
|
|
|
|
decompressor-clean:
|
|
|
|
$(MAKE) -C decompressor clean
|
2019-05-15 07:08:56 +03:00
|
|
|
|
2020-09-30 01:31:42 +03:00
|
|
|
test-clean:
|
|
|
|
$(MAKE) -C test clean
|
2021-02-25 03:47:48 +03:00
|
|
|
rm -rf test_image test.hdd test.iso
|
2020-09-30 01:31:42 +03:00
|
|
|
|
2020-09-15 13:16:31 +03:00
|
|
|
toolchain:
|
2021-02-25 08:12:32 +03:00
|
|
|
./make_toolchain.sh ./toolchain -j`nproc`
|
2020-09-14 20:32:11 +03:00
|
|
|
|
2021-03-02 12:23:43 +03:00
|
|
|
gnu-efi:
|
|
|
|
git clone https://git.code.sf.net/p/gnu-efi/code --branch=3.0.12 --depth=1 $@
|
|
|
|
|
|
|
|
ovmf:
|
|
|
|
mkdir -p ovmf
|
|
|
|
wget https://efi.akeo.ie/OVMF/OVMF-X64.zip
|
|
|
|
cd ovmf && 7z x OVMF-X64.zip
|
|
|
|
|
2020-11-29 10:26:08 +03:00
|
|
|
test.hdd:
|
|
|
|
rm -f test.hdd
|
|
|
|
dd if=/dev/zero bs=1M count=0 seek=64 of=test.hdd
|
2020-12-06 18:43:38 +03:00
|
|
|
parted -s test.hdd mklabel gpt
|
2020-11-29 10:26:08 +03:00
|
|
|
parted -s test.hdd mkpart primary 2048s 100%
|
2020-04-15 09:48:35 +03:00
|
|
|
|
2021-02-25 03:47:48 +03:00
|
|
|
echfs-test: | test-clean test.hdd bootloader all
|
2020-04-15 09:48:35 +03:00
|
|
|
$(MAKE) -C test
|
2020-12-06 18:43:38 +03:00
|
|
|
echfs-utils -g -p0 test.hdd quick-format 512 > part_guid
|
2020-11-01 23:25:35 +03:00
|
|
|
sed "s/@GUID@/`cat part_guid`/g" < test/limine.cfg > limine.cfg.tmp
|
2020-12-06 18:43:38 +03:00
|
|
|
echfs-utils -g -p0 test.hdd import limine.cfg.tmp limine.cfg
|
2020-11-01 23:25:35 +03:00
|
|
|
rm -f limine.cfg.tmp part_guid
|
2020-12-06 18:43:38 +03:00
|
|
|
echfs-utils -g -p0 test.hdd import test/test.elf boot/test.elf
|
2020-12-27 21:32:18 +03:00
|
|
|
echfs-utils -g -p0 test.hdd import test/bg.bmp boot/bg.bmp
|
2021-02-25 03:24:54 +03:00
|
|
|
echfs-utils -g -p0 test.hdd import bin/limine.sys boot/limine.sys
|
|
|
|
bin/limine-install test.hdd
|
2020-11-29 10:26:08 +03:00
|
|
|
qemu-system-x86_64 -net none -smp 4 -enable-kvm -cpu host -hda test.hdd -debugcon stdio
|
2020-05-01 18:19:29 +03:00
|
|
|
|
2021-02-25 03:47:48 +03:00
|
|
|
ext2-test: | test-clean test.hdd bootloader all
|
2020-05-01 18:19:29 +03:00
|
|
|
$(MAKE) -C test
|
2020-07-06 23:59:28 +03:00
|
|
|
rm -rf test_image/
|
2020-05-01 18:19:29 +03:00
|
|
|
mkdir test_image
|
2020-11-29 10:26:08 +03:00
|
|
|
sudo losetup -Pf --show test.hdd > loopback_dev
|
2020-05-01 19:23:49 +03:00
|
|
|
sudo partprobe `cat loopback_dev`
|
2020-07-06 23:59:28 +03:00
|
|
|
sudo mkfs.ext2 `cat loopback_dev`p1
|
|
|
|
sudo mount `cat loopback_dev`p1 test_image
|
2020-05-01 18:19:29 +03:00
|
|
|
sudo mkdir test_image/boot
|
2021-02-25 03:24:54 +03:00
|
|
|
sudo cp -rv bin/* test/* test_image/boot/
|
2020-05-01 18:19:29 +03:00
|
|
|
sync
|
|
|
|
sudo umount test_image/
|
|
|
|
sudo losetup -d `cat loopback_dev`
|
|
|
|
rm -rf test_image loopback_dev
|
2021-02-25 03:24:54 +03:00
|
|
|
bin/limine-install test.hdd
|
2020-11-29 10:26:08 +03:00
|
|
|
qemu-system-x86_64 -net none -smp 4 -enable-kvm -cpu host -hda test.hdd -debugcon stdio
|
2020-05-02 16:47:29 +03:00
|
|
|
|
2021-02-25 03:47:48 +03:00
|
|
|
fat32-test: | test-clean test.hdd bootloader all
|
2020-05-02 16:47:29 +03:00
|
|
|
$(MAKE) -C test
|
2020-07-06 23:59:28 +03:00
|
|
|
rm -rf test_image/
|
2020-05-02 16:47:29 +03:00
|
|
|
mkdir test_image
|
2020-11-29 10:26:08 +03:00
|
|
|
sudo losetup -Pf --show test.hdd > loopback_dev
|
2020-05-02 16:47:29 +03:00
|
|
|
sudo partprobe `cat loopback_dev`
|
2020-07-06 23:59:28 +03:00
|
|
|
sudo mkfs.fat -F 32 `cat loopback_dev`p1
|
|
|
|
sudo mount `cat loopback_dev`p1 test_image
|
2020-05-02 16:47:29 +03:00
|
|
|
sudo mkdir test_image/boot
|
2021-02-25 03:24:54 +03:00
|
|
|
sudo cp -rv bin/* test/* test_image/boot/
|
2021-03-02 12:23:43 +03:00
|
|
|
ifeq ($(TARGET), uefi)
|
|
|
|
sudo mkdir -p test_image/EFI/BOOT
|
|
|
|
sudo cp bin/BOOTX64.EFI test_image/EFI/BOOT/
|
|
|
|
endif
|
2020-05-02 16:47:29 +03:00
|
|
|
sync
|
|
|
|
sudo umount test_image/
|
|
|
|
sudo losetup -d `cat loopback_dev`
|
|
|
|
rm -rf test_image loopback_dev
|
2021-02-25 03:24:54 +03:00
|
|
|
bin/limine-install test.hdd
|
2021-03-02 12:23:43 +03:00
|
|
|
ifeq ($(TARGET), bios)
|
2020-11-29 10:26:08 +03:00
|
|
|
qemu-system-x86_64 -net none -smp 4 -enable-kvm -cpu host -hda test.hdd -debugcon stdio
|
2021-03-02 12:23:43 +03:00
|
|
|
else ifeq ($(TARGET), uefi)
|
|
|
|
qemu-system-x86_64 -L ovmf -bios ovmf/OVMF.fd -net none -smp 4 -enable-kvm -cpu host -hda test.hdd -debugcon stdio
|
|
|
|
endif
|
2021-02-21 05:45:24 +03:00
|
|
|
|
2021-02-25 03:47:48 +03:00
|
|
|
iso9660-test: | test-clean test.hdd bootloader all
|
2021-02-21 05:45:24 +03:00
|
|
|
$(MAKE) -C test
|
|
|
|
rm -rf test_image/
|
|
|
|
mkdir -p test_image/boot
|
2021-02-25 03:24:54 +03:00
|
|
|
cp -rv bin/* test/* test_image/boot/
|
2021-02-25 03:40:02 +03:00
|
|
|
genisoimage -no-emul-boot -b boot/limine-cd.bin -boot-load-size 4 -boot-info-table -o test.iso test_image/
|
2021-02-21 05:45:24 +03:00
|
|
|
qemu-system-x86_64 -net none -smp 4 -enable-kvm -cpu host -cdrom test.iso -debugcon stdio
|