rulimine/Makefile

273 lines
8.9 KiB
Makefile
Raw Normal View History

PREFIX = /usr/local
DESTDIR =
PATH := $(shell pwd)/toolchain/bin:$(PATH)
SHELL := env PATH=$(PATH) /bin/bash
TOOLCHAIN = x86_64-elf
2021-04-03 02:14:17 +03:00
TOOLCHAIN_CC = $(TOOLCHAIN)-gcc
TOOLCHAIN_AR = $(TOOLCHAIN)-ar
2021-04-03 02:14:17 +03:00
ifeq ($(shell which $(TOOLCHAIN_CC)), )
TOOLCHAIN_CC := gcc
endif
ifeq ($(shell which $(TOOLCHAIN_AR)), )
TOOLCHAIN_AR := ar
endif
ifneq ($(shell $(TOOLCHAIN_CC) -dumpmachine | head -c 6), x86_64)
$(error No suitable x86_64 GCC compiler found, please install an x86_64 GCC toolchain or run "make toolchain")
endif
2020-07-06 23:59:28 +03:00
2021-04-03 23:12:40 +03:00
STAGE1_FILES := $(shell find -L ./stage1 -type f -name '*.asm' | sort)
.PHONY: all bin/limine-install clean install distclean limine-bios limine-uefi limine-bios-clean limine-uefi-clean stage23-bios stage23-bios-clean stage23-uefi stage23-uefi-clean decompressor decompressor-clean toolchain test.hdd echfs-test ext2-test fat16-test fat32-test iso9660-test iso9660-uefi-test pxe-test uefi-test hybrid-iso9660-test
all:
$(MAKE) limine-uefi
$(MAKE) limine-bios
$(MAKE) bin/limine-install
bin/limine-install:
$(MAKE) -C limine-install LIMINE_HDD_BIN=`realpath bin`/limine-hdd.bin
[ -f limine-install/limine-install ] && cp limine-install/limine-install bin/ || true
[ -f limine-install/limine-install.exe ] && cp limine-install/limine-install.exe bin/ || true
2021-02-21 01:04:06 +03:00
2021-03-08 02:50:23 +03:00
clean: limine-bios-clean limine-uefi-clean
$(MAKE) -C limine-install clean
install: all
install -d $(DESTDIR)$(PREFIX)/bin
2021-03-08 02:50:23 +03:00
install -s bin/limine-install $(DESTDIR)$(PREFIX)/bin/
install -d $(DESTDIR)$(PREFIX)/share
install -d $(DESTDIR)$(PREFIX)/share/limine
install -m 644 bin/limine.sys $(DESTDIR)$(PREFIX)/share/limine/
install -m 644 bin/limine-cd.bin $(DESTDIR)$(PREFIX)/share/limine/
install -m 644 bin/limine-eltorito-efi.bin $(DESTDIR)$(PREFIX)/share/limine/
install -m 644 bin/limine-pxe.bin $(DESTDIR)$(PREFIX)/share/limine/
install -m 644 bin/BOOTX64.EFI $(DESTDIR)$(PREFIX)/share/limine/
2021-04-03 23:12:40 +03:00
build/stage1: $(STAGE1_FILES) build/decompressor/decompressor.bin build/stage23-bios/stage2.bin.gz
2021-02-25 03:24:54 +03:00
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
2021-03-08 02:50:23 +03:00
cp build/stage23-bios/limine.sys ./bin/
2021-04-03 23:12:40 +03:00
touch build/stage1
limine-bios: stage23-bios decompressor
$(MAKE) build/stage1
2021-03-08 02:50:23 +03:00
2021-04-03 23:12:40 +03:00
bin/limine-eltorito-efi.bin: build/stage23-uefi/BOOTX64.EFI
2021-03-17 15:19:06 +03:00
dd if=/dev/zero of=$@ bs=512 count=2880
mformat -i $@ -f 1440 ::
mmd -D s -i $@ ::/EFI
mmd -D s -i $@ ::/EFI/BOOT
2021-04-03 23:12:40 +03:00
mcopy -D o -i $@ build/stage23-uefi/BOOTX64.EFI ::/EFI/BOOT
2021-03-17 15:19:06 +03:00
limine-uefi:
$(MAKE) gnu-efi
$(MAKE) stage23-uefi
2021-03-02 12:23:43 +03:00
mkdir -p bin
2021-03-08 02:50:23 +03:00
cp build/stage23-uefi/BOOTX64.EFI ./bin/
2021-03-17 15:19:06 +03:00
$(MAKE) bin/limine-eltorito-efi.bin
2021-03-08 02:50:23 +03:00
limine-bios-clean: stage23-bios-clean decompressor-clean
2020-09-14 21:02:36 +03:00
2021-03-08 02:50:23 +03:00
limine-uefi-clean: stage23-uefi-clean
2020-09-13 16:47:43 +03:00
2021-03-08 02:50:23 +03:00
distclean: clean test-clean
rm -rf bin build stivale toolchain ovmf gnu-efi
2020-10-04 01:01:05 +03:00
stivale:
git clone https://github.com/stivale/stivale.git
2021-03-08 02:50:23 +03:00
stage23-uefi: stivale
$(MAKE) -C stage23 all TARGET=uefi BUILDDIR="`pwd`/build/stage23-uefi"
stage23-uefi-clean:
$(MAKE) -C stage23 clean TARGET=uefi BUILDDIR="`pwd`/build/stage23-uefi"
stage23-bios: stivale
$(MAKE) -C stage23 all TARGET=bios BUILDDIR="`pwd`/build/stage23-bios"
2021-03-08 02:50:23 +03:00
stage23-bios-clean:
$(MAKE) -C stage23 clean TARGET=bios BUILDDIR="`pwd`/build/stage23-bios"
2020-09-14 20:32:11 +03:00
2021-03-02 12:23:43 +03:00
decompressor:
2021-03-08 02:50:23 +03:00
$(MAKE) -C decompressor all BUILDDIR="`pwd`/build/decompressor"
2020-09-14 20:32:11 +03:00
decompressor-clean:
2021-03-08 02:50:23 +03:00
$(MAKE) -C decompressor clean BUILDDIR="`pwd`/build/decompressor"
2019-05-15 07:08:56 +03:00
test-clean:
$(MAKE) -C test clean
2021-02-25 03:47:48 +03:00
rm -rf test_image test.hdd test.iso
toolchain:
scripts/make_toolchain.sh "`realpath ./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.13 --depth=1 $@
2021-04-08 22:02:46 +03:00
$(MAKE) -C gnu-efi/gnuefi CC="$(TOOLCHAIN_CC) -m64 -march=x86-64" AR="$(TOOLCHAIN_AR)"
$(MAKE) -C gnu-efi/lib CC="$(TOOLCHAIN_CC) -m64 -march=x86-64" ARCH=x86_64 x86_64/efi_stub.o
2021-03-02 12:23:43 +03:00
ovmf:
mkdir -p ovmf
2021-03-02 12:42:35 +03:00
cd ovmf && wget https://efi.akeo.ie/OVMF/OVMF-X64.zip && 7z x OVMF-X64.zip
2021-03-02 12:23:43 +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 gpt
parted -s test.hdd mkpart primary 2048s 100%
echfs-test:
$(MAKE) test-clean
$(MAKE) test.hdd
$(MAKE) limine-bios
$(MAKE) bin/limine-install
$(MAKE) -C test
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
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
echfs-utils -g -p0 test.hdd import test/test.elf boot/test.elf
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
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
ext2-test:
$(MAKE) test-clean
$(MAKE) test.hdd
$(MAKE) limine-bios
$(MAKE) bin/limine-install
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.hdd > 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
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
qemu-system-x86_64 -net none -smp 4 -enable-kvm -cpu host -hda test.hdd -debugcon stdio
2021-03-13 07:07:18 +03:00
fat16-test:
$(MAKE) test-clean
$(MAKE) test.hdd
$(MAKE) limine-bios
$(MAKE) bin/limine-install
$(MAKE) -C test
rm -rf test_image/
mkdir test_image
sudo losetup -Pf --show test.hdd > loopback_dev
sudo partprobe `cat loopback_dev`
sudo mkfs.fat -F 16 `cat loopback_dev`p1
sudo mount `cat loopback_dev`p1 test_image
sudo mkdir test_image/boot
sudo cp -rv bin/* test/* test_image/boot/
sync
sudo umount test_image/
sudo losetup -d `cat loopback_dev`
rm -rf test_image loopback_dev
bin/limine-install test.hdd
qemu-system-x86_64 -net none -smp 4 -enable-kvm -cpu host -hda test.hdd -debugcon stdio
fat32-test:
$(MAKE) test-clean
$(MAKE) test.hdd
$(MAKE) limine-bios
$(MAKE) bin/limine-install
$(MAKE) -C test
2020-07-06 23:59:28 +03:00
rm -rf test_image/
mkdir test_image
sudo losetup -Pf --show test.hdd > 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
sudo mkdir test_image/boot
2021-02-25 03:24:54 +03:00
sudo cp -rv bin/* test/* test_image/boot/
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
qemu-system-x86_64 -net none -smp 4 -enable-kvm -cpu host -hda test.hdd -debugcon stdio
2021-02-21 05:45:24 +03:00
iso9660-test:
$(MAKE) test-clean
$(MAKE) test.hdd
$(MAKE) limine-bios
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/
xorriso -as mkisofs -b boot/limine-cd.bin -no-emul-boot -boot-load-size 4 -boot-info-table test_image/ -o test.iso
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
iso9660-uefi-test:
$(MAKE) ovmf
$(MAKE) test-clean
$(MAKE) test.hdd
$(MAKE) limine-uefi
$(MAKE) -C test
rm -rf test_image/
mkdir -p test_image/boot
cp -rv bin/* test/* test_image/boot/
xorriso -as mkisofs -eltorito-alt-boot -e boot/limine-eltorito-efi.bin -no-emul-boot test_image/ -o test.iso
qemu-system-x86_64 -M q35 -L ovmf -bios ovmf/OVMF.fd -net none -smp 4 -enable-kvm -cpu host -cdrom test.iso -debugcon stdio
2021-03-17 15:19:06 +03:00
hybrid-iso9660-test:
$(MAKE) ovmf
$(MAKE) test-clean
$(MAKE) test.hdd
$(MAKE) limine-uefi
2021-03-17 15:19:06 +03:00
$(MAKE) limine-bios
$(MAKE) -C test
rm -rf test_image/
mkdir -p test_image/boot
cp -rv bin/* test/* test_image/boot/
mkdir -p test_image/EFI/BOOT
cp -v bin/BOOTX64.EFI test_image/EFI/BOOT/
xorriso -as mkisofs -b boot/limine-cd.bin -no-emul-boot -boot-load-size 4 -boot-info-table -eltorito-alt-boot -e boot/limine-eltorito-efi.bin -no-emul-boot test_image/ -o test.iso
qemu-system-x86_64 -M q35 -L ovmf -bios ovmf/OVMF.fd -net none -smp 4 -enable-kvm -cpu host -cdrom test.iso -debugcon stdio
2021-03-04 07:30:31 +03:00
2021-03-11 02:35:24 +03:00
pxe-test:
$(MAKE) test-clean
$(MAKE) limine-bios
$(MAKE) -C test
rm -rf test_image/
mkdir -p test_image/boot
cp -rv bin/* test/* test_image/boot/
qemu-system-x86_64 -enable-kvm -smp 4 -cpu host -netdev user,id=n0,tftp=./test_image,bootfile=boot/limine-pxe.bin -device rtl8139,netdev=n0,mac=00:00:00:11:11:11 -debugcon stdio
uefi-test:
$(MAKE) ovmf
$(MAKE) test-clean
$(MAKE) test.hdd
$(MAKE) limine-uefi
2021-03-04 07:30:31 +03:00
$(MAKE) -C test
rm -rf test_image/
mkdir test_image
sudo losetup -Pf --show test.hdd > loopback_dev
sudo partprobe `cat loopback_dev`
sudo mkfs.fat -F 32 `cat loopback_dev`p1
sudo mount `cat loopback_dev`p1 test_image
sudo mkdir test_image/boot
sudo cp -rv bin/* test/* test_image/boot/
sudo mkdir -p test_image/EFI/BOOT
sudo cp bin/BOOTX64.EFI test_image/EFI/BOOT/
sync
sudo umount test_image/
sudo losetup -d `cat loopback_dev`
rm -rf test_image loopback_dev
qemu-system-x86_64 -M q35 -L ovmf -bios ovmf/OVMF.fd -net none -smp 4 -enable-kvm -cpu host -hda test.hdd -debugcon stdio