Skip to content

Commit da00474

Browse files
committed
Update README, v0.8.1
1 parent a73d98c commit da00474

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,13 @@ The goal of this project is to make the rou2exOS kernel to follow the microkerne
1212

1313
![rou2exOS startup](/.github/img/r2-kernel-boot.png)
1414

15-
To run the OS, you can use the attached ISO image from any Release, and run it in QEMU emulator. The system was also tested on the x86_64 baremetal (booted from the USB flash disk).
15+
To run the OS, you can use the attached ISO image from any [Release](https://github.com/krustowski/rou2exOS/releases), and run it in QEMU emulator. The system was also tested on the x86_64 baremetal (booted from the USB flash disk). To enable the filesystem functionalities, attach a IMG file to QEMU as well (in virtual floppy drive A).
1616

17-
## How to build and run
17+
```
18+
qemu-system-x86_64 -boot d -cdrom r2.iso -fda fat.img
19+
```
20+
21+
## How to build and run from source
1822

1923
```shell
2024
# install Rust and its dependencies

src/input/cmd.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use crate::video;
1616
use crate::input::keyboard;
1717
use crate::tui::{widget::{Container, Window, Label}, app::TuiApp};
1818

19-
const KERNEL_VERSION: &[u8] = b"0.8.0";
19+
const KERNEL_VERSION: &[u8] = b"0.8.1";
2020

2121
struct Command {
2222
name: &'static [u8],

0 commit comments

Comments
 (0)