2020-09-13 15:36:18 +03:00
|
|
|
CC = cc
|
2020-09-04 06:21:58 +03:00
|
|
|
CFLAGS = -O2 -pipe -Wall -Wextra
|
2020-09-18 22:38:59 +03:00
|
|
|
PATH := $(shell pwd)/toolchain/bin:$(PATH)
|
2020-07-06 23:59:28 +03:00
|
|
|
|
2020-11-29 10:26:08 +03:00
|
|
|
.PHONY: all clean stage2 stage2-clean decompressor decompressor-clean toolchain test.hdd echfs-test ext2-test fat32-test
|
2020-09-14 21:02:36 +03:00
|
|
|
|
2020-09-15 13:16:31 +03:00
|
|
|
all: stage2 decompressor
|
|
|
|
gzip -n -9 < stage2/stage2.bin > stage2/stage2.bin.gz
|
|
|
|
cd bootsect && nasm bootsect.asm -fbin -o ../limine.bin
|
2020-11-05 03:37:45 +03:00
|
|
|
cd pxeboot && nasm bootsect.asm -fbin -o ../limine-pxe.bin
|
2020-11-15 19:56:10 +03:00
|
|
|
cp stage2/stage2.map ./
|
2020-09-14 21:02:36 +03:00
|
|
|
|
2020-09-30 01:31:42 +03:00
|
|
|
clean: stage2-clean decompressor-clean test-clean
|
2020-11-30 01:45:18 +03:00
|
|
|
rm -f stage2/stage2.bin.gz test/stage2.map test.hdd
|
2020-09-13 16:47:43 +03:00
|
|
|
|
2020-10-04 01:01:05 +03:00
|
|
|
distclean: clean
|
2020-11-30 01:45:18 +03:00
|
|
|
rm -f limine-install
|
2020-10-04 01:01:05 +03:00
|
|
|
|
2020-09-14 20:32:11 +03:00
|
|
|
stage2:
|
|
|
|
$(MAKE) -C stage2 all
|
2020-09-13 16:20:53 +03:00
|
|
|
|
2020-09-14 20:32:11 +03:00
|
|
|
stage2-clean:
|
|
|
|
$(MAKE) -C stage2 clean
|
|
|
|
|
|
|
|
decompressor:
|
|
|
|
$(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
|
|
|
|
|
2020-09-15 13:16:31 +03:00
|
|
|
toolchain:
|
|
|
|
cd toolchain && ./make_toolchain.sh -j`nproc`
|
2020-09-14 20:32:11 +03:00
|
|
|
|
2020-09-15 13:16:31 +03:00
|
|
|
limine-install: limine-install.c
|
|
|
|
$(CC) $(CFLAGS) limine-install.c -o limine-install
|
2020-09-14 20:32:11 +03:00
|
|
|
|
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
|
|
|
|
parted -s test.hdd mklabel msdos
|
|
|
|
parted -s test.hdd mkpart primary 2048s 100%
|
2020-04-15 09:48:35 +03:00
|
|
|
|
2020-11-29 10:26:08 +03:00
|
|
|
echfs-test: all limine-install test.hdd
|
2020-04-15 09:48:35 +03:00
|
|
|
$(MAKE) -C test
|
2020-11-29 10:26:08 +03:00
|
|
|
echfs-utils -m -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-11-29 10:26:08 +03:00
|
|
|
echfs-utils -m -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-11-29 10:26:08 +03:00
|
|
|
echfs-utils -m -p0 test.hdd import stage2.map boot/stage2.map
|
|
|
|
echfs-utils -m -p0 test.hdd import test/test.elf boot/test.elf
|
|
|
|
echfs-utils -m -p0 test.hdd import test/bg.bmp boot/bg.bmp
|
2020-12-05 06:42:19 +03:00
|
|
|
echfs-utils -m -p0 test.hdd import test/font.bin boot/font.bin
|
2020-11-29 10:26:08 +03:00
|
|
|
./limine-install limine.bin test.hdd
|
|
|
|
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
|
|
|
|
2020-11-29 10:26:08 +03:00
|
|
|
ext2-test: all limine-install test.hdd
|
2020-05-01 18:19:29 +03:00
|
|
|
$(MAKE) -C test
|
2020-11-15 19:56:10 +03:00
|
|
|
cp stage2.map 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
|
2020-11-15 19:56:10 +03:00
|
|
|
sudo cp -rv 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
|
2020-11-29 10:26:08 +03:00
|
|
|
./limine-install limine.bin test.hdd
|
|
|
|
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
|
|
|
|
2020-11-29 10:26:08 +03:00
|
|
|
fat32-test: all limine-install test.hdd
|
2020-05-02 16:47:29 +03:00
|
|
|
$(MAKE) -C test
|
2020-12-04 16:11:25 +03:00
|
|
|
cp stage2.map 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
|
2020-11-15 19:56:10 +03:00
|
|
|
sudo cp -rv test/* test_image/boot/
|
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
|
2020-11-29 10:26:08 +03:00
|
|
|
./limine-install limine.bin test.hdd
|
|
|
|
qemu-system-x86_64 -net none -smp 4 -enable-kvm -cpu host -hda test.hdd -debugcon stdio
|