2020-12-31 06:39:18 +03:00
|
|
|
PREFIX = /usr/local
|
|
|
|
DESTDIR =
|
|
|
|
|
2021-04-08 20:41:46 +03:00
|
|
|
PATH := $(shell pwd)/toolchain/bin:$(PATH)
|
2021-04-11 10:56:48 +03:00
|
|
|
SHELL := /usr/bin/env bash
|
2021-04-08 20:41:46 +03:00
|
|
|
|
2021-04-03 01:48:38 +03:00
|
|
|
TOOLCHAIN = x86_64-elf
|
|
|
|
|
2021-04-03 02:14:17 +03:00
|
|
|
TOOLCHAIN_CC = $(TOOLCHAIN)-gcc
|
2021-04-08 20:41:46 +03:00
|
|
|
TOOLCHAIN_AR = $(TOOLCHAIN)-ar
|
2021-04-03 02:14:17 +03:00
|
|
|
|
2021-04-11 10:56:48 +03:00
|
|
|
ifeq ($(shell export "PATH=$(PATH)"; which $(TOOLCHAIN_CC)), )
|
2021-04-08 20:41:46 +03:00
|
|
|
TOOLCHAIN_CC := gcc
|
|
|
|
endif
|
2021-04-11 10:56:48 +03:00
|
|
|
ifeq ($(shell export "PATH=$(PATH)"; which $(TOOLCHAIN_AR)), )
|
2021-04-08 20:41:46 +03:00
|
|
|
TOOLCHAIN_AR := ar
|
|
|
|
endif
|
|
|
|
|
2021-05-22 11:25:05 +03:00
|
|
|
ifneq ($(MAKECMDGOALS), toolchain)
|
2021-04-11 10:56:48 +03:00
|
|
|
ifneq ($(shell export "PATH=$(PATH)"; $(TOOLCHAIN_CC) -dumpmachine | head -c 6), x86_64)
|
2021-04-08 20:41:46 +03:00
|
|
|
$(error No suitable x86_64 GCC compiler found, please install an x86_64 GCC toolchain or run "make toolchain")
|
|
|
|
endif
|
2021-05-22 11:25: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
|
2021-03-08 10:09:15 +03:00
|
|
|
all:
|
|
|
|
$(MAKE) limine-uefi
|
|
|
|
$(MAKE) limine-bios
|
|
|
|
$(MAKE) bin/limine-install
|
2020-12-31 06:39:18 +03:00
|
|
|
|
2021-04-11 10:56:48 +03:00
|
|
|
.PHONY: bin/limine-install
|
2021-03-17 20:38:47 +03:00
|
|
|
bin/limine-install:
|
|
|
|
$(MAKE) -C limine-install LIMINE_HDD_BIN=`realpath bin`/limine-hdd.bin
|
2021-03-18 09:19:57 +03:00
|
|
|
[ -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-03-08 02:50:23 +03:00
|
|
|
clean: limine-bios-clean limine-uefi-clean
|
2021-03-17 20:38:47 +03:00
|
|
|
$(MAKE) -C limine-install clean
|
2020-12-31 06:39:18 +03:00
|
|
|
|
2021-04-11 10:56:48 +03:00
|
|
|
.PHONY: install
|
2020-12-31 06:39:18 +03:00
|
|
|
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"
|
|
|
|
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/"
|
2020-12-31 06:39:18 +03:00
|
|
|
|
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-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
|
|
|
|
2021-04-11 10:56:48 +03:00
|
|
|
.PHONY: limine-uefi
|
2021-03-08 10:09:15 +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
|
|
|
|
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-04-15 03:42:39 +03:00
|
|
|
.PHONY: distclean2
|
|
|
|
distclean2: clean test-clean
|
|
|
|
rm -rf bin build toolchain ovmf gnu-efi
|
|
|
|
|
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
|
|
|
|
2021-01-15 07:14:20 +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-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"
|
2020-09-13 16:20:53 +03:00
|
|
|
|
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
|
2020-09-30 01:31:42 +03:00
|
|
|
test-clean:
|
|
|
|
$(MAKE) -C test clean
|
2021-02-25 03:47:48 +03:00
|
|
|
rm -rf test_image test.hdd test.iso
|
2020-09-30 01:31:42 +03:00
|
|
|
|
2021-04-11 10:56:48 +03:00
|
|
|
.PHONY: toolchain
|
2020-09-15 13:16:31 +03:00
|
|
|
toolchain:
|
2021-04-03 01:48:38 +03:00
|
|
|
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:
|
2021-04-03 01:48:38 +03:00
|
|
|
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
|
|
|
|
2021-04-11 10:56:48 +03:00
|
|
|
.PHONY: test.hdd
|
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
|
2020-12-06 18:43:38 +03:00
|
|
|
parted -s test.hdd mklabel gpt
|
2020-11-29 10:26:08 +03:00
|
|
|
parted -s test.hdd mkpart primary 2048s 100%
|
2020-04-15 09:48:35 +03:00
|
|
|
|
2021-04-11 10:56:48 +03:00
|
|
|
.PHONY: echfs-test
|
2021-03-08 10:09:15 +03:00
|
|
|
echfs-test:
|
|
|
|
$(MAKE) test-clean
|
|
|
|
$(MAKE) test.hdd
|
|
|
|
$(MAKE) limine-bios
|
|
|
|
$(MAKE) bin/limine-install
|
2020-04-15 09:48:35 +03:00
|
|
|
$(MAKE) -C test
|
2020-12-06 18:43:38 +03:00
|
|
|
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
|
2020-12-06 18:43:38 +03:00
|
|
|
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
|
2020-12-06 18:43:38 +03:00
|
|
|
echfs-utils -g -p0 test.hdd import test/test.elf boot/test.elf
|
2020-12-27 21:32:18 +03:00
|
|
|
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
|
2020-11-29 10:26:08 +03:00
|
|
|
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
|
2021-03-08 10:09:15 +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
|
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
|
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
|
2020-11-29 10:26:08 +03:00
|
|
|
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
|
2020-05-02 16:47:29 +03:00
|
|
|
|
2021-04-11 10:56:48 +03:00
|
|
|
.PHONY: fat32-test
|
2021-03-08 10:09:15 +03:00
|
|
|
fat32-test:
|
|
|
|
$(MAKE) test-clean
|
|
|
|
$(MAKE) test.hdd
|
|
|
|
$(MAKE) limine-bios
|
|
|
|
$(MAKE) bin/limine-install
|
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
|
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
|
2021-02-25 03:24:54 +03:00
|
|
|
sudo cp -rv bin/* 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
|
2021-02-25 03:24:54 +03:00
|
|
|
bin/limine-install test.hdd
|
2020-11-29 10:26:08 +03:00
|
|
|
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
|
2021-03-08 10:09:15 +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/
|
2021-03-28 19:37:53 +03:00
|
|
|
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-03-13 17:53:16 +03:00
|
|
|
|
2021-04-11 10:56:48 +03:00
|
|
|
.PHONY: iso9660-uefi-test
|
2021-03-28 19:37:53 +03:00
|
|
|
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
|
2021-04-04 01:28:22 +03:00
|
|
|
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-28 19:37:53 +03:00
|
|
|
|
2021-04-11 10:56:48 +03:00
|
|
|
.PHONY: hybrid-iso9660-test
|
2021-03-17 15:19:06 +03:00
|
|
|
hybrid-iso9660-test:
|
2021-03-13 17:53:16 +03:00
|
|
|
$(MAKE) ovmf
|
|
|
|
$(MAKE) test-clean
|
|
|
|
$(MAKE) limine-uefi
|
2021-03-17 15:19:06 +03:00
|
|
|
$(MAKE) limine-bios
|
2021-03-13 17:53:16 +03:00
|
|
|
$(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/
|
2021-03-28 19:37:53 +03:00
|
|
|
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
|
2021-04-04 01:28:22 +03:00
|
|
|
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-05-05 21:24:30 +03:00
|
|
|
.PHONY: full-hybrid-test
|
|
|
|
full-hybrid-test:
|
|
|
|
$(MAKE) ovmf
|
|
|
|
$(MAKE) test-clean
|
|
|
|
$(MAKE) limine-uefi
|
|
|
|
$(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/
|
2021-05-21 00:23:59 +03:00
|
|
|
xorriso -as mkisofs -b boot/limine-cd.bin -no-emul-boot -boot-load-size 4 -boot-info-table -part_like_isohybrid --mbr-force-bootable -eltorito-alt-boot -e boot/limine-eltorito-efi.bin -no-emul-boot test_image/ -isohybrid-gpt-basdat -o test.iso
|
2021-05-05 21:24:30 +03:00
|
|
|
bin/limine-install 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
|
|
|
|
qemu-system-x86_64 -M q35 -L ovmf -bios ovmf/OVMF.fd -net none -smp 4 -enable-kvm -cpu host -hda test.iso -debugcon stdio
|
|
|
|
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
|
2021-03-08 10:09:15 +03:00
|
|
|
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
|
2021-04-04 01:28:22 +03:00
|
|
|
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
|