Rename kernel file to "tailix.multiboot2"

This commit is contained in:
Alex Kotov 2021-12-12 18:53:18 +05:00
parent ea254a832c
commit 0087ae334b
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
5 changed files with 10 additions and 10 deletions

2
.gitignore vendored
View File

@ -4,4 +4,4 @@
*.iso
/config.mk
/rootfs/boot/kernelmq.multiboot2
/rootfs/boot/tailix.multiboot2

View File

@ -1,9 +1,9 @@
GRUBCFG = rootfs/boot/grub/grub.cfg
KERNEL = rootfs/boot/kernelmq.multiboot2
KERNEL = rootfs/boot/tailix.multiboot2
IMAGE = image.iso
.PHONY: kernelmq/kernelmq.multiboot2
.PHONY: kernelmq/tailix.multiboot2
run: $(IMAGE)
qemu-system-i386 -cdrom $< -display none -serial stdio
@ -15,8 +15,8 @@ clean:
$(IMAGE): $(GRUBCFG) $(KERNEL)
grub-mkrescue rootfs -o $@
$(KERNEL): kernelmq/kernelmq.multiboot2
$(KERNEL): kernelmq/tailix.multiboot2
cp $< $@
kernelmq/kernelmq.multiboot2:
make -C kernelmq kernelmq.multiboot2
kernelmq/tailix.multiboot2:
make -C kernelmq tailix.multiboot2

2
kernelmq/.gitignore vendored
View File

@ -1 +1 @@
/kernelmq.multiboot2
/tailix.multiboot2

View File

@ -4,7 +4,7 @@ AS = $(CCPREFIX)as
CC = $(CCPREFIX)gcc
LD = $(CCPREFIX)ld
KERNEL = kernelmq.multiboot2
KERNEL = tailix.multiboot2
CFLAGS = -std=gnu99 -ffreestanding -fno-builtin -fno-stack-protector -Wall -Wextra -I/usr/local/include

View File

@ -1,5 +1,5 @@
set timeout=0
menuentry "KernelMQ" {
multiboot2 /boot/kernelmq.multiboot2 hello kernel
menuentry "Tailix" {
multiboot2 /boot/tailix.multiboot2 hello kernel
}