2020-09-13 14:36:18 +02:00
|
|
|
CC = cc
|
2020-12-31 04:39:18 +01:00
|
|
|
OBJCOPY = objcopy
|
2020-09-04 05:21:58 +02:00
|
|
|
CFLAGS = -O2 -pipe -Wall -Wextra
|
2020-12-31 04:39:18 +01:00
|
|
|
PREFIX = /usr/local
|
|
|
|
DESTDIR =
|
|
|
|
|
2020-09-18 21:38:59 +02:00
|
|
|
PATH := $(shell pwd)/toolchain/bin:$(PATH)
|
2020-07-06 22:59:28 +02:00
|
|
|
|
2021-02-22 20:43:51 +01:00
|
|
|
.PHONY: all clean install tinf-clean bootloader bootloader-clean distclean stages stages-clean decompressor decompressor-clean toolchain test.hdd echfs-test ext2-test fat32-test
|
2020-12-31 04:39:18 +01:00
|
|
|
|
|
|
|
all: limine-install
|
|
|
|
|
2021-02-20 23:04:06 +01:00
|
|
|
limine-install: limine-install.c limine.o limine_sys.o
|
|
|
|
$(CC) $(CFLAGS) -std=c11 limine.o limine_sys.o limine-install.c -o limine-install
|
2020-12-31 04:39:18 +01:00
|
|
|
|
|
|
|
limine.o: limine.bin
|
2021-01-15 03:58:59 +01:00
|
|
|
$(OBJCOPY) -B i8086 -I binary -O default limine.bin limine.o
|
2020-09-14 20:02:36 +02:00
|
|
|
|
2021-02-20 23:04:06 +01:00
|
|
|
limine_sys.o: limine.bin
|
|
|
|
$(OBJCOPY) -B i8086 -I binary -O default limine.sys limine_sys.o
|
|
|
|
|
2020-12-31 04:39:18 +01:00
|
|
|
clean:
|
2021-02-20 23:15:01 +01:00
|
|
|
rm -f limine.o limine_sys.o limine-install
|
2020-12-31 04:39:18 +01:00
|
|
|
|
|
|
|
install: all
|
|
|
|
install -d $(DESTDIR)$(PREFIX)/bin
|
|
|
|
install -s limine-install $(DESTDIR)$(PREFIX)/bin/
|
|
|
|
|
2021-02-22 20:43:51 +01:00
|
|
|
bootloader: | decompressor stages
|
|
|
|
cd hddboot && nasm bootsect.asm -fbin -o ../limine-hdd.bin
|
2021-02-21 03:45:24 +01:00
|
|
|
cd cdboot && nasm bootsect.asm -fbin -o ../limine-cd.bin
|
2020-11-05 01:37:45 +01:00
|
|
|
cd pxeboot && nasm bootsect.asm -fbin -o ../limine-pxe.bin
|
2021-02-22 20:43:51 +01:00
|
|
|
cp stages/stages.map ./
|
|
|
|
cp stages/stage3.bin ./limine.sys
|
2020-09-14 20:02:36 +02:00
|
|
|
|
2021-02-22 20:43:51 +01:00
|
|
|
bootloader-clean: stages-clean decompressor-clean test-clean
|
|
|
|
rm -f test/stages.map test.hdd
|
2020-09-13 15:47:43 +02:00
|
|
|
|
2020-12-31 04:39:18 +01:00
|
|
|
distclean: clean bootloader-clean
|
2021-01-15 05:14:20 +01:00
|
|
|
rm -rf stivale
|
2020-10-04 00:01:05 +02:00
|
|
|
|
2021-02-22 04:34:36 +01:00
|
|
|
tinf-clean:
|
|
|
|
cd tinf && rm -rf *.o *.d
|
|
|
|
|
2021-01-15 05:14:20 +01:00
|
|
|
stivale:
|
|
|
|
git clone https://github.com/stivale/stivale.git
|
2021-01-15 10:18:33 +01:00
|
|
|
cd stivale && git checkout d0a7ca5642d89654f8d688c2481c2771a8653c99
|
2021-01-15 05:14:20 +01:00
|
|
|
|
2021-02-22 20:43:51 +01:00
|
|
|
stages: tinf-clean stivale
|
|
|
|
$(MAKE) -C stages all
|
2020-09-13 15:20:53 +02:00
|
|
|
|
2021-02-22 20:43:51 +01:00
|
|
|
stages-clean:
|
|
|
|
$(MAKE) -C stages clean
|
2020-09-14 19:32:11 +02:00
|
|
|
|
2021-02-22 04:34:36 +01:00
|
|
|
decompressor: tinf-clean
|
2020-09-14 19:32:11 +02:00
|
|
|
$(MAKE) -C decompressor all
|
|
|
|
|
|
|
|
decompressor-clean:
|
|
|
|
$(MAKE) -C decompressor clean
|
2019-05-15 06:08:56 +02:00
|
|
|
|
2020-09-30 00:31:42 +02:00
|
|
|
test-clean:
|
|
|
|
$(MAKE) -C test clean
|
|
|
|
|
2020-09-15 12:16:31 +02:00
|
|
|
toolchain:
|
|
|
|
cd toolchain && ./make_toolchain.sh -j`nproc`
|
2020-09-14 19:32:11 +02:00
|
|
|
|
2020-11-29 08:26:08 +01:00
|
|
|
test.hdd:
|
|
|
|
rm -f test.hdd
|
|
|
|
dd if=/dev/zero bs=1M count=0 seek=64 of=test.hdd
|
2020-12-06 16:43:38 +01:00
|
|
|
parted -s test.hdd mklabel gpt
|
2020-11-29 08:26:08 +01:00
|
|
|
parted -s test.hdd mkpart primary 2048s 100%
|
2020-04-14 23:48:35 -07:00
|
|
|
|
2020-12-31 04:50:40 +01:00
|
|
|
echfs-test: test.hdd bootloader | all
|
2020-04-14 23:48:35 -07:00
|
|
|
$(MAKE) -C test
|
2020-12-06 16:43:38 +01:00
|
|
|
echfs-utils -g -p0 test.hdd quick-format 512 > part_guid
|
2020-11-01 21:25:35 +01:00
|
|
|
sed "s/@GUID@/`cat part_guid`/g" < test/limine.cfg > limine.cfg.tmp
|
2020-12-06 16:43:38 +01:00
|
|
|
echfs-utils -g -p0 test.hdd import limine.cfg.tmp limine.cfg
|
2020-11-01 21:25:35 +01:00
|
|
|
rm -f limine.cfg.tmp part_guid
|
2021-02-22 20:43:51 +01:00
|
|
|
echfs-utils -g -p0 test.hdd import stages.map boot/stages.map
|
2020-12-06 16:43:38 +01:00
|
|
|
echfs-utils -g -p0 test.hdd import test/test.elf boot/test.elf
|
2020-12-27 19:32:18 +01:00
|
|
|
echfs-utils -g -p0 test.hdd import test/bg.bmp boot/bg.bmp
|
2021-02-20 23:04:06 +01:00
|
|
|
./limine-install ./ test.hdd
|
|
|
|
echfs-utils -g -p0 test.hdd import ./limine.sys boot/limine.sys
|
2020-11-29 08:26:08 +01:00
|
|
|
qemu-system-x86_64 -net none -smp 4 -enable-kvm -cpu host -hda test.hdd -debugcon stdio
|
2020-05-01 17:19:29 +02:00
|
|
|
|
2020-12-31 04:50:40 +01:00
|
|
|
ext2-test: test.hdd bootloader | all
|
2020-05-01 17:19:29 +02:00
|
|
|
$(MAKE) -C test
|
2021-02-22 20:43:51 +01:00
|
|
|
cp stages.map test/
|
2020-07-06 22:59:28 +02:00
|
|
|
rm -rf test_image/
|
2020-05-01 17:19:29 +02:00
|
|
|
mkdir test_image
|
2020-11-29 08:26:08 +01:00
|
|
|
sudo losetup -Pf --show test.hdd > loopback_dev
|
2020-05-01 18:23:49 +02:00
|
|
|
sudo partprobe `cat loopback_dev`
|
2020-07-06 22:59:28 +02:00
|
|
|
sudo mkfs.ext2 `cat loopback_dev`p1
|
|
|
|
sudo mount `cat loopback_dev`p1 test_image
|
2020-05-01 17:19:29 +02:00
|
|
|
sudo mkdir test_image/boot
|
2021-02-22 04:49:39 +01:00
|
|
|
sudo cp -rv ./limine.sys test/* test_image/boot/
|
2020-05-01 17:19:29 +02:00
|
|
|
sync
|
|
|
|
sudo umount test_image/
|
|
|
|
sudo losetup -d `cat loopback_dev`
|
|
|
|
rm -rf test_image loopback_dev
|
2021-02-22 04:49:39 +01:00
|
|
|
./limine-install ./ test.hdd
|
2020-11-29 08:26:08 +01:00
|
|
|
qemu-system-x86_64 -net none -smp 4 -enable-kvm -cpu host -hda test.hdd -debugcon stdio
|
2020-05-02 15:47:29 +02:00
|
|
|
|
2020-12-31 04:50:40 +01:00
|
|
|
fat32-test: test.hdd bootloader | all
|
2020-05-02 15:47:29 +02:00
|
|
|
$(MAKE) -C test
|
2021-02-22 20:43:51 +01:00
|
|
|
cp stages.map test/
|
2020-07-06 22:59:28 +02:00
|
|
|
rm -rf test_image/
|
2020-05-02 15:47:29 +02:00
|
|
|
mkdir test_image
|
2020-11-29 08:26:08 +01:00
|
|
|
sudo losetup -Pf --show test.hdd > loopback_dev
|
2020-05-02 15:47:29 +02:00
|
|
|
sudo partprobe `cat loopback_dev`
|
2020-07-06 22:59:28 +02:00
|
|
|
sudo mkfs.fat -F 32 `cat loopback_dev`p1
|
|
|
|
sudo mount `cat loopback_dev`p1 test_image
|
2020-05-02 15:47:29 +02:00
|
|
|
sudo mkdir test_image/boot
|
2021-02-22 04:49:39 +01:00
|
|
|
sudo cp -rv ./limine.sys test/* test_image/boot/
|
2020-05-02 15:47:29 +02:00
|
|
|
sync
|
|
|
|
sudo umount test_image/
|
|
|
|
sudo losetup -d `cat loopback_dev`
|
|
|
|
rm -rf test_image loopback_dev
|
2021-02-22 04:49:39 +01:00
|
|
|
./limine-install ./ test.hdd
|
2020-11-29 08:26:08 +01:00
|
|
|
qemu-system-x86_64 -net none -smp 4 -enable-kvm -cpu host -hda test.hdd -debugcon stdio
|
2021-02-21 03:45:24 +01:00
|
|
|
|
|
|
|
iso9660-test: bootloader
|
|
|
|
$(MAKE) -C test
|
2021-02-22 20:43:51 +01:00
|
|
|
cp stages.map test/
|
2021-02-21 03:45:24 +01:00
|
|
|
rm -rf test_image/
|
|
|
|
mkdir -p test_image/boot
|
2021-02-22 20:43:51 +01:00
|
|
|
cp -rv limine-cd.bin limine.sys stages/stages.bin test/* test_image/boot/
|
2021-02-21 03:45:24 +01:00
|
|
|
genisoimage -no-emul-boot -b boot/limine-cd.bin -o test.iso test_image/
|
|
|
|
qemu-system-x86_64 -net none -smp 4 -enable-kvm -cpu host -cdrom test.iso -debugcon stdio
|