mirror of
https://github.com/fluencelabs/wasmer
synced 2025-03-16 16:20:49 +00:00
Update the name of experimental IO devices in fs
This commit is contained in:
parent
50f3079d82
commit
600f4ded9e
@ -451,21 +451,10 @@ pub fn initialize(fs: &mut WasiFs) -> Result<(), String> {
|
||||
cursor: 0,
|
||||
});
|
||||
|
||||
let dev_fd = unsafe {
|
||||
let base_dir_fd = unsafe {
|
||||
fs.open_dir_all(
|
||||
VIRTUAL_ROOT_FD,
|
||||
"dev".to_string(),
|
||||
ALL_RIGHTS,
|
||||
ALL_RIGHTS,
|
||||
0,
|
||||
)
|
||||
.map_err(|e| format!("fb: Failed to create dev folder {:?}", e))?
|
||||
};
|
||||
|
||||
let fb_fd = unsafe {
|
||||
fs.open_dir_all(
|
||||
VIRTUAL_ROOT_FD,
|
||||
"sys/class/graphics/wasmerfb0".to_string(),
|
||||
"_wasmer/fb0".to_string(),
|
||||
ALL_RIGHTS,
|
||||
ALL_RIGHTS,
|
||||
0,
|
||||
@ -475,7 +464,7 @@ pub fn initialize(fs: &mut WasiFs) -> Result<(), String> {
|
||||
|
||||
let _fd = fs
|
||||
.open_file_at(
|
||||
dev_fd,
|
||||
base_dir_fd,
|
||||
input_file,
|
||||
Fd::READ,
|
||||
"input".to_string(),
|
||||
@ -489,10 +478,10 @@ pub fn initialize(fs: &mut WasiFs) -> Result<(), String> {
|
||||
|
||||
let _fd = fs
|
||||
.open_file_at(
|
||||
dev_fd,
|
||||
base_dir_fd,
|
||||
frame_buffer_file,
|
||||
Fd::READ | Fd::WRITE,
|
||||
"wasmerfb0".to_string(),
|
||||
"fb".to_string(),
|
||||
ALL_RIGHTS,
|
||||
ALL_RIGHTS,
|
||||
0,
|
||||
@ -503,7 +492,7 @@ pub fn initialize(fs: &mut WasiFs) -> Result<(), String> {
|
||||
|
||||
let _fd = fs
|
||||
.open_file_at(
|
||||
fb_fd,
|
||||
base_dir_fd,
|
||||
resolution_file,
|
||||
Fd::READ | Fd::WRITE,
|
||||
"virtual_size".to_string(),
|
||||
@ -517,7 +506,7 @@ pub fn initialize(fs: &mut WasiFs) -> Result<(), String> {
|
||||
|
||||
let _fd = fs
|
||||
.open_file_at(
|
||||
fb_fd,
|
||||
base_dir_fd,
|
||||
index_file,
|
||||
Fd::READ | Fd::WRITE,
|
||||
"buffer_index_display".to_string(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user