c176903905
* Minor code cleanup * Able to read/write from the disk * Recycle the descriptors (this is currently done inefficiently, will be fixed in a follow up commit) * Add the disk scheme for virtio-blk with working functionality for seek(), read() and open() * After all of this work, we are successfully able to boot redox from virtio-blk!! :) Signed-off-by: Anhad Singh <andypython@protonmail.com>
22 lines
527 B
TOML
22 lines
527 B
TOML
[package]
|
|
name = "virtiod"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Anhad Singh <andypython@protonmail.com>"]
|
|
|
|
[dependencies]
|
|
static_assertions = "1.1.0"
|
|
bitflags = "2.3.2"
|
|
anyhow = "1.0.71"
|
|
log = "0.4"
|
|
thiserror = "1.0.40"
|
|
|
|
redox-daemon = "0.1"
|
|
redox-log = "0.1"
|
|
redox_syscall = "0.3"
|
|
redox_event = { git = "https://gitlab.redox-os.org/redox-os/event.git" }
|
|
partitionlib = { git = "https://gitlab.redox-os.org/redox-os/partitionlib.git" }
|
|
|
|
block-io-wrapper = { path = "../block-io-wrapper" }
|
|
pcid = { path = "../pcid" }
|