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/* start32.bin: src/*
fasm src/start32.asm start32.bin fasm src/start32.asm start32.bin
image: start32.bin mount image: start32.bin mount
cp start32.bin mnt/koalemos/ cp start32.bin mnt/roska/
sync sync
qemu-multiboot: start32.bin qemu-multiboot: start32.bin
qemu-system-i386 -kernel start32.bin -serial stdio qemu-system-i386 -kernel start32.bin -serial stdio
qemu-image: image 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 \ @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; fi;
umount: umount:
@sudo umount mnt @sudo umount mnt

View file

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

View file

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