2020-09-04 06:21:58 +03:00
|
|
|
DESTDIR =
|
|
|
|
PREFIX = /usr/local
|
|
|
|
|
2020-09-13 15:36:18 +03:00
|
|
|
CC = cc
|
|
|
|
OBJCOPY = objcopy
|
2020-09-04 06:21:58 +03:00
|
|
|
CFLAGS = -O2 -pipe -Wall -Wextra
|
2020-07-06 23:59:28 +03:00
|
|
|
|
2020-09-14 21:02:36 +03:00
|
|
|
.PHONY: all clean install toolchain stage2 stage2-clean decompressor decompressor-clean limine limine-clean test.img echfs-test ext2-test fat32-test
|
2019-05-15 07:08:56 +03:00
|
|
|
|
2020-09-04 06:21:58 +03:00
|
|
|
all: limine-install
|
|
|
|
|
2020-09-14 21:02:36 +03:00
|
|
|
limine-install: limine.bin limine-install.c
|
|
|
|
$(OBJCOPY) -I binary -O default limine.bin limine.o
|
|
|
|
$(CC) $(CFLAGS) limine.o limine-install.c -o limine-install
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f limine.o limine-install
|
|
|
|
|
|
|
|
install: all
|
|
|
|
install -s limine-install $(DESTDIR)$(PREFIX)/bin/
|
|
|
|
|
2020-09-13 16:47:43 +03:00
|
|
|
toolchain:
|
|
|
|
cd toolchain && ./make_toolchain.sh -j`nproc`
|
|
|
|
|
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-14 20:32:11 +03:00
|
|
|
limine: stage2 decompressor
|
|
|
|
gzip -n -9 < stage2/stage2.bin > stage2/stage2.bin.gz
|
|
|
|
cd bootsect && nasm bootsect.asm -fbin -o ../limine.bin
|
|
|
|
|
2020-09-14 21:02:36 +03:00
|
|
|
limine-clean: stage2-clean decompressor-clean
|
|
|
|
rm -f stage2/stage2.bin.gz
|
2020-09-14 20:32:11 +03:00
|
|
|
|
2020-07-06 23:59:28 +03:00
|
|
|
test.img:
|
2020-03-25 03:04:18 +03:00
|
|
|
rm -f test.img
|
2020-09-08 15:02:28 +03:00
|
|
|
dd if=/dev/zero bs=1M count=0 seek=64 of=test.img
|
2020-07-06 23:59:28 +03:00
|
|
|
parted -s test.img mklabel msdos
|
2020-09-08 15:02:28 +03:00
|
|
|
parted -s test.img mkpart primary 2048s 100%
|
2020-04-15 09:48:35 +03:00
|
|
|
|
2020-09-04 06:21:58 +03:00
|
|
|
echfs-test: limine-install test.img
|
2020-04-15 09:48:35 +03:00
|
|
|
$(MAKE) -C test
|
2020-09-08 15:02:28 +03:00
|
|
|
echfs-utils -m -p0 test.img quick-format 512
|
2020-07-06 23:59:28 +03:00
|
|
|
echfs-utils -m -p0 test.img import test/test.elf boot/test.elf
|
2020-08-29 21:02:16 +03:00
|
|
|
echfs-utils -m -p0 test.img import test/limine.cfg limine.cfg
|
2020-09-04 06:21:58 +03:00
|
|
|
./limine-install test.img
|
2020-09-02 11:31:39 +03:00
|
|
|
qemu-system-x86_64 -hda test.img -debugcon stdio -enable-kvm
|
2020-05-01 18:19:29 +03:00
|
|
|
|
2020-09-04 06:21:58 +03:00
|
|
|
ext2-test: limine-install test.img
|
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
|
|
|
|
sudo losetup -Pf --show test.img > 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
|
|
|
|
sudo cp test/test.elf test_image/boot/
|
2020-08-29 21:02:16 +03:00
|
|
|
sudo cp test/limine.cfg test_image/
|
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-09-04 06:21:58 +03:00
|
|
|
./limine-install test.img
|
2020-05-01 19:23:49 +03:00
|
|
|
qemu-system-x86_64 -hda test.img -debugcon stdio
|
2020-05-02 16:47:29 +03:00
|
|
|
|
2020-09-04 06:21:58 +03:00
|
|
|
fat32-test: limine-install test.img
|
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
|
|
|
|
sudo losetup -Pf --show test.img > loopback_dev
|
|
|
|
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
|
|
|
|
sudo cp test/test.elf test_image/boot/
|
2020-08-29 21:02:16 +03:00
|
|
|
sudo cp test/limine.cfg test_image/
|
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-09-04 06:21:58 +03:00
|
|
|
./limine-install test.img
|
2020-05-02 16:47:29 +03:00
|
|
|
qemu-system-x86_64 -hda test.img -debugcon stdio
|