mirror of
https://github.com/tailix/kernel.git
synced 2025-04-14 17:33:13 -04:00
Rename kernel file to "tailix.multiboot2"
This commit is contained in:
parent
ea254a832c
commit
0087ae334b
5 changed files with 10 additions and 10 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -4,4 +4,4 @@
|
|||
*.iso
|
||||
|
||||
/config.mk
|
||||
/rootfs/boot/kernelmq.multiboot2
|
||||
/rootfs/boot/tailix.multiboot2
|
||||
|
|
10
Makefile
10
Makefile
|
@ -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
2
kernelmq/.gitignore
vendored
|
@ -1 +1 @@
|
|||
/kernelmq.multiboot2
|
||||
/tailix.multiboot2
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
set timeout=0
|
||||
|
||||
menuentry "KernelMQ" {
|
||||
multiboot2 /boot/kernelmq.multiboot2 hello kernel
|
||||
menuentry "Tailix" {
|
||||
multiboot2 /boot/tailix.multiboot2 hello kernel
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue