rulimine/Makefile

376 lines
12 KiB
Makefile
Raw Normal View History

PREFIX = /usr/local
DESTDIR =
PATH := $(shell pwd)/toolchain/bin:$(PATH)
NCPUS := $(shell nproc 2>/dev/null || sysctl -n hw.ncpu 2>/dev/null || echo 1)
TOOLCHAIN = limine
2021-04-03 02:14:17 +03:00
TOOLCHAIN_CC = $(TOOLCHAIN)-gcc
2021-06-30 19:22:50 +03:00
ifeq ($(shell export "PATH=$(PATH)"; command -v $(TOOLCHAIN_CC) ; ), )
TOOLCHAIN_CC := cc
endif
2021-07-26 19:27:05 +03:00
CC_MACHINE := $(shell export "PATH=$(PATH)"; $(TOOLCHAIN_CC) -dumpmachine | dd bs=6 count=1 2>/dev/null)
ifneq ($(MAKECMDGOALS), toolchain)
ifneq ($(MAKECMDGOALS), distclean)
ifneq ($(MAKECMDGOALS), distclean2)
2021-07-26 19:27:05 +03:00
ifneq ($(CC_MACHINE), x86_64)
ifneq ($(CC_MACHINE), amd64-)
$(error No suitable x86_64 C compiler found, please install an x86_64 C toolchain or run "make toolchain")
endif
endif
endif
endif
2021-07-26 19:27:05 +03:00
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)
2021-04-11 10:56:48 +03:00
.PHONY: all
all:
$(MAKE) limine-uefi
2021-07-20 15:46:19 +03:00
$(MAKE) limine-uefi32
$(MAKE) limine-bios
$(MAKE) bin/limine-install
2021-04-11 10:56:48 +03:00
.PHONY: bin/limine-install
bin/limine-install:
$(MAKE) -C limine-install LIMINE_HDD_BIN="`pwd`/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-04-11 10:56:48 +03:00
.PHONY: clean
2021-07-20 15:46:19 +03:00
clean: limine-bios-clean limine-uefi-clean limine-uefi32-clean
$(MAKE) -C limine-install clean
2021-04-11 10:56:48 +03:00
.PHONY: install
install: all
2021-04-11 10:56:48 +03:00
install -d "$(DESTDIR)$(PREFIX)/bin"
install -s bin/limine-install "$(DESTDIR)$(PREFIX)/bin/"
install -d "$(DESTDIR)$(PREFIX)/share"
install -d "$(DESTDIR)$(PREFIX)/share/limine"
2021-07-20 15:46:19 +03:00
install -m 644 bin/limine.sys "$(DESTDIR)$(PREFIX)/share/limine/" || true
install -m 644 bin/limine-cd.bin "$(DESTDIR)$(PREFIX)/share/limine/" || true
install -m 644 bin/limine-eltorito-efi.bin "$(DESTDIR)$(PREFIX)/share/limine/" || true
2021-07-20 15:46:19 +03:00
install -m 644 bin/limine-pxe.bin "$(DESTDIR)$(PREFIX)/share/limine/" || true
install -m 644 bin/BOOTX64.EFI "$(DESTDIR)$(PREFIX)/share/limine/" || true
install -m 644 bin/BOOTIA32.EFI "$(DESTDIR)$(PREFIX)/share/limine/" || true
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
2021-04-11 11:00:57 +03:00
cd stage1/hdd && nasm bootsect.asm -Werror -fbin -o ../../bin/limine-hdd.bin
cd stage1/cd && nasm bootsect.asm -Werror -fbin -o ../../bin/limine-cd.bin
cd stage1/pxe && nasm bootsect.asm -Werror -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
2021-04-11 10:56:48 +03:00
.PHONY: limine-bios
2021-04-03 23:12:40 +03:00
limine-bios: stage23-bios decompressor
$(MAKE) build/stage1
2021-03-08 02:50:23 +03:00
2021-07-20 15:46:19 +03:00
.PHONY: bin/limine-eltorito-efi.bin
bin/limine-eltorito-efi.bin:
2021-03-17 15:19:06 +03:00
dd if=/dev/zero of=$@ bs=512 count=2880
2021-05-31 22:48:48 +03:00
( mformat -i $@ -f 1440 :: && \
mmd -D s -i $@ ::/EFI && \
mmd -D s -i $@ ::/EFI/BOOT && \
2021-07-20 15:46:19 +03:00
( ( [ -f build/stage23-uefi/BOOTX64.EFI ] && \
mcopy -D o -i $@ build/stage23-uefi/BOOTX64.EFI ::/EFI/BOOT ) || true ) && \
( ( [ -f build/stage23-uefi32/BOOTIA32.EFI ] && \
mcopy -D o -i $@ build/stage23-uefi32/BOOTIA32.EFI ::/EFI/BOOT ) || true ) \
) || rm -f $@
2021-03-17 15:19:06 +03:00
2021-04-11 10:56:48 +03:00
.PHONY: limine-uefi
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
2021-07-20 14:35:43 +03:00
.PHONY: limine-uefi32
limine-uefi32:
$(MAKE) gnu-efi
$(MAKE) stage23-uefi32
mkdir -p bin
cp build/stage23-uefi32/BOOTIA32.EFI ./bin/
2021-07-20 15:46:19 +03:00
$(MAKE) bin/limine-eltorito-efi.bin
2021-07-20 14:35:43 +03:00
2021-04-11 10:56:48 +03:00
.PHONY: limine-bios-clean
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-04-11 10:56:48 +03:00
.PHONY: limine-uefi-clean
2021-03-08 02:50:23 +03:00
limine-uefi-clean: stage23-uefi-clean
2020-09-13 16:47:43 +03:00
2021-07-20 14:35:43 +03:00
.PHONY: limine-uefi32-clean
2021-07-20 15:46:19 +03:00
limine-uefi32-clean: stage23-uefi32-clean
2021-07-20 14:35:43 +03:00
2021-04-15 03:42:39 +03:00
.PHONY: distclean2
distclean2: clean test-clean
2021-07-20 15:46:19 +03:00
rm -rf bin build toolchain ovmf* gnu-efi
2021-04-15 03:42:39 +03:00
2021-04-11 10:56:48 +03:00
.PHONY: distclean
2021-04-15 03:42:39 +03:00
distclean: distclean2
rm -rf stivale
2020-10-04 01:01:05 +03:00
stivale:
git clone https://github.com/stivale/stivale.git
2021-04-11 10:56:48 +03:00
.PHONY: stage23-uefi
2021-03-08 02:50:23 +03:00
stage23-uefi: stivale
$(MAKE) -C stage23 all TARGET=uefi BUILDDIR="`pwd`/build/stage23-uefi"
2021-04-11 10:56:48 +03:00
.PHONY: stage23-uefi-clean
2021-03-08 02:50:23 +03:00
stage23-uefi-clean:
$(MAKE) -C stage23 clean TARGET=uefi BUILDDIR="`pwd`/build/stage23-uefi"
2021-07-20 14:35:43 +03:00
.PHONY: stage23-uefi32
stage23-uefi32: stivale
$(MAKE) -C stage23 all TARGET=uefi32 BUILDDIR="`pwd`/build/stage23-uefi32"
.PHONY: stage23-uefi32-clean
stage23-uefi32-clean:
$(MAKE) -C stage23 clean TARGET=uefi32 BUILDDIR="`pwd`/build/stage23-uefi32"
2021-04-11 10:56:48 +03:00
.PHONY: stage23-bios
2021-03-08 02:50:23 +03:00
stage23-bios: stivale
$(MAKE) -C stage23 all TARGET=bios BUILDDIR="`pwd`/build/stage23-bios"
2021-04-11 10:56:48 +03:00
.PHONY: stage23-bios-clean
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-04-11 10:56:48 +03:00
.PHONY: decompressor
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
2021-04-11 10:56:48 +03:00
.PHONY: decompressor-clean
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
2021-04-11 10:56:48 +03:00
.PHONY: test-clean
test-clean:
$(MAKE) -C test clean
2021-02-25 03:47:48 +03:00
rm -rf test_image test.hdd test.iso
2021-04-11 10:56:48 +03:00
.PHONY: toolchain
toolchain:
MAKE="$(MAKE)" aux/make_toolchain.sh "`pwd`/toolchain" -j$(NCPUS)
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-07-20 14:35:43 +03:00
cp aux/elf/* gnu-efi/inc/
ovmf-x64:
mkdir -p ovmf-x64
cd ovmf-x64 && curl -o OVMF-X64.zip https://efi.akeo.ie/OVMF/OVMF-X64.zip && 7z x OVMF-X64.zip
2021-03-02 12:23:43 +03:00
2021-07-20 14:35:43 +03:00
ovmf-ia32:
mkdir -p ovmf-ia32
cd ovmf-ia32 && curl -o OVMF-IA32.zip https://efi.akeo.ie/OVMF/OVMF-IA32.zip && 7z x OVMF-IA32.zip
2021-03-02 12:23:43 +03:00
2021-04-11 10:56:48 +03:00
.PHONY: test.hdd
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%
2021-04-11 10:56:48 +03:00
.PHONY: echfs-test
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
2021-04-11 10:56:48 +03:00
.PHONY: ext2-test
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
2021-05-11 07:46:42 +03:00
.PHONY: fat12-test
fat12-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 12 `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
2021-04-11 10:56:48 +03:00
.PHONY: fat16-test
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
2021-04-11 10:56:48 +03:00
.PHONY: fat32-test
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
2021-04-11 10:56:48 +03:00
.PHONY: iso9660-test
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
2021-05-05 21:24:30 +03:00
.PHONY: full-hybrid-test
full-hybrid-test:
2021-07-20 15:46:19 +03:00
$(MAKE) ovmf-x64
$(MAKE) ovmf-ia32
2021-05-05 21:24:30 +03:00
$(MAKE) test-clean
$(MAKE) limine-uefi
2021-07-20 15:46:19 +03:00
$(MAKE) limine-uefi32
2021-05-05 21:24:30 +03:00
$(MAKE) limine-bios
$(MAKE) bin/limine-install
$(MAKE) -C test
rm -rf test_image/
mkdir -p test_image/boot
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 --efi-boot boot/limine-eltorito-efi.bin -efi-boot-part --efi-boot-image --protective-msdos-label test_image/ -o test.iso
2021-05-05 21:24:30 +03:00
bin/limine-install test.iso
2021-07-20 15:46:19 +03:00
qemu-system-x86_64 -M q35 -bios ovmf-x64/OVMF.fd -net none -smp 4 -enable-kvm -cpu host -cdrom test.iso -debugcon stdio
qemu-system-x86_64 -M q35 -bios ovmf-x64/OVMF.fd -net none -smp 4 -enable-kvm -cpu host -hda test.iso -debugcon stdio
qemu-system-x86_64 -M q35 -bios ovmf-ia32/OVMF.fd -net none -smp 4 -enable-kvm -cpu host -cdrom test.iso -debugcon stdio
qemu-system-x86_64 -M q35 -bios ovmf-ia32/OVMF.fd -net none -smp 4 -enable-kvm -cpu host -hda test.iso -debugcon stdio
2021-05-05 21:24:30 +03:00
qemu-system-x86_64 -M q35 -net none -smp 4 -enable-kvm -cpu host -cdrom test.iso -debugcon stdio
qemu-system-x86_64 -M q35 -net none -smp 4 -enable-kvm -cpu host -hda test.iso -debugcon stdio
2021-04-11 10:56:48 +03:00
.PHONY: pxe-test
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
2021-04-11 10:56:48 +03:00
.PHONY: uefi-test
uefi-test:
2021-07-20 14:35:43 +03:00
$(MAKE) ovmf-x64
$(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
2021-07-20 14:35:43 +03:00
qemu-system-x86_64 -M q35 -L ovmf -bios ovmf-x64/OVMF.fd -net none -smp 4 -enable-kvm -cpu host -hda test.hdd -debugcon stdio
.PHONY: uefi32-test
uefi32-test:
$(MAKE) ovmf-ia32
$(MAKE) test-clean
$(MAKE) test.hdd
$(MAKE) limine-uefi32
$(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/BOOTIA32.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-ia32/OVMF.fd -net none -smp 4 -enable-kvm -cpu host -hda test.hdd -debugcon stdio