rulimine/Makefile

82 lines
2.2 KiB
Makefile
Raw Normal View History

2020-07-06 23:59:28 +03:00
OS := $(shell uname)
2020-08-29 21:02:16 +03:00
CC = cc
2020-07-06 23:59:28 +03:00
.PHONY: all clean echfs-test ext2-test test.img
2019-05-15 07:08:56 +03:00
all:
$(MAKE) -C src all
2020-08-29 21:02:16 +03:00
cp src/limine.bin ./
2019-05-15 07:08:56 +03:00
clean:
$(MAKE) -C src clean
2020-03-25 01:39:02 +03:00
2020-08-29 21:02:16 +03:00
limine-install: limine-install.c
$(CC) limine-install.c -o limine-install
2020-07-06 23:59:28 +03:00
test.img:
2020-03-25 03:04:18 +03:00
rm -f test.img
2020-07-06 23:59:28 +03:00
dd if=/dev/zero bs=1M count=0 seek=4096 of=test.img
ifeq ($(OS), Linux)
parted -s test.img mklabel msdos
parted -s test.img mkpart primary 0% 100%
2020-07-06 23:59:28 +03:00
else ifeq ($(OS), FreeBSD)
sudo mdconfig -a -t vnode -f test.img -u md9
sudo gpart create -s mbr md9
sudo gpart add -a 4k -t '!14' md9
sudo mdconfig -d -u md9
endif
2020-07-06 23:59:28 +03:00
echfs-test: test.img all
$(MAKE) -C test
2020-07-06 23:59:28 +03:00
echfs-utils -m -p0 test.img quick-format 32768
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
./limine-install src/limine.bin test.img
qemu-system-x86_64 -hda test.img -debugcon stdio
2020-05-01 18:19:29 +03:00
2020-07-06 23:59:28 +03:00
ext2-test: test.img 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
sudo losetup -Pf --show test.img > loopback_dev
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-08-29 21:02:16 +03:00
./limine-install src/limine.bin test.img
qemu-system-x86_64 -hda test.img -debugcon stdio
2020-07-06 23:59:28 +03:00
fat32-test: test.img all
$(MAKE) -C test
2020-07-06 23:59:28 +03:00
rm -rf test_image/
mkdir test_image
2020-07-06 23:59:28 +03:00
ifeq ($(OS), Linux)
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
else ifeq ($(OS), FreeBSD)
sudo mdconfig -a -t vnode -f test.img -u md9
sudo newfs_msdos -F 32 /dev/md9s1
sudo mount -t msdosfs /dev/md9s1 test_image
endif
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/
sync
sudo umount test_image/
2020-07-06 23:59:28 +03:00
ifeq ($(OS), Linux)
sudo losetup -d `cat loopback_dev`
2020-07-06 23:59:28 +03:00
else ifeq ($(OS), FreeBSD)
sudo mdconfig -d -u md9
endif
rm -rf test_image loopback_dev
2020-08-29 21:02:16 +03:00
./limine-install src/limine.bin test.img
qemu-system-x86_64 -hda test.img -debugcon stdio