Forgat my os is supposed to be called rOSka

This commit is contained in:
Jarkko Toivanen 2023-08-01 21:05:36 +03:00
parent cbaa9e00f9
commit 208d05b139
Signed by: jt
GPG Key ID: 9151B109B73ECAD5
3 changed files with 7 additions and 7 deletions

View File

@ -5,17 +5,17 @@ clean:
start32.bin: src/*
fasm src/start32.asm start32.bin
image: start32.bin mount
cp start32.bin mnt/koalemos/
cp start32.bin mnt/roska/
sync
qemu-multiboot: start32.bin
qemu-system-i386 -kernel start32.bin -serial stdio
qemu-image: image
qemu-system-i386 koalemos.img -serial stdio
qemu-system-i386 roska.img -serial stdio
mount: koalemos.img mnt/
mount: roska.img mnt/
@if ! mountpoint -q "mnt/"; then \
sudo mount -o loop,offset=1048576,umask=177,dmask=022,uid=$(shell id -u),gid=$(shell id -g) koalemos.img mnt/; \
sudo mount -o loop,offset=1048576,umask=177,dmask=022,uid=$(shell id -u),gid=$(shell id -g) roska.img mnt/; \
fi;
umount:
@sudo umount mnt

View File

@ -1,5 +1,5 @@
# KoalemOS
Multiboot compatible stupid useless OS-like project.
# rOSka
Multiboot compatible stupid useless OS-like project that is literally trash.
## Compatibility
32bit x86 legacy BIOS system
## Building

View File

@ -148,7 +148,7 @@ include "src/mbootinfo.asm"
include "src/itoa.asm"
stuff:
.bootmsg db 10, "=== KoalemOS ===", 10, 0
.bootmsg db 10, "=== rOSka ===", 10, 0
.fbaddrmsgpfx db 10, "Framebuffer address: 0x", 0
.fbdimensionsmsgpfx db 10, "Framebuffer dimensions: ", 0
.x db "x", 0