Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
3c8920d
kernelx
LRache Aug 31, 2025
65329a7
kernelx
LRache Sep 2, 2025
7e653aa
kernelx: moved kernel code to /kernel
LRache Sep 14, 2025
aac1da9
docs: KXOS -> KernelX
LRache Sep 14, 2025
e73fa88
docs: mkdir
LRache Sep 14, 2025
63df68a
fixed: removed build dir
LRache Sep 14, 2025
92463c2
kernelx
LRache Sep 17, 2025
eb93151
test: glibc mkdir, open and write
LRache Sep 17, 2025
a4f5e7c
fixed: changed program path
LRache Sep 17, 2025
c82e556
fixed: fini all inode when panic
LRache Sep 17, 2025
7473931
feat: syscall dup2
LRache Sep 18, 2025
217c169
feat: menuconfig
LRache Sep 18, 2025
b44f62b
refactor
LRache Sep 22, 2025
5eff878
kernelx
LRache Sep 24, 2025
be27401
kernelx
LRache Sep 26, 2025
ac4469e
kernelx
LRache Sep 30, 2025
2034a24
kernelx
LRache Oct 5, 2025
049bbf4
kernelx
LRache Oct 10, 2025
941a571
kernelx
LRache Oct 11, 2025
688d0fd
kernelx signal
LRache Oct 12, 2025
beb6abb
kernelx
LRache Oct 15, 2025
2e60e3c
kernelx
LRache Oct 19, 2025
7fdf468
libfdt
LRache Oct 22, 2025
23bc241
kernelx
LRache Oct 22, 2025
8a0a99b
kernelx
LRache Oct 26, 2025
4deb4e5
kernelx
LRache Oct 29, 2025
556cf0b
kernelx
LRache Nov 2, 2025
8128c16
kernelx
LRache Nov 5, 2025
9fab9e0
kernelx
LRache Nov 12, 2025
8c6d202
kernelx
LRache Nov 16, 2025
199be87
lib lwext4_rust
LRache Nov 20, 2025
7e75d7a
kernelx
LRache Nov 20, 2025
6444833
kernelx
LRache Nov 23, 2025
7101f13
kernelx
LRache Nov 24, 2025
a99f31a
kernelx
LRache Nov 24, 2025
e0d29e6
swap-memory
LRache Nov 26, 2025
78c3ce6
feat: swap memory for anonymous area
LRache Nov 30, 2025
56a279c
feat: riscv SVADU extension
LRache Nov 30, 2025
c320b2f
feat: riscv svadu extension
LRache Dec 1, 2025
015eb02
kernelx
LRache Dec 3, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
kernelx
  • Loading branch information
LRache committed Nov 20, 2025
commit 7e75d7a692af8409d5becbe4b0f4d77e58e95d75
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ kernel.asm
.cache

/sdcard-*
/alpine-*

# Kconfig generated files
.config*
Expand Down
178 changes: 173 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ fdt = "0.1.5"
bitfield-struct = "0.8.0"
visionfive2-sd = { git = "https://github.com/os-module/visionfive2-sd.git", rev = "af75139" }
ext4_rs = { path = "./lib/ext4_rs"}
lwext4_rust = { path = "./lib/lwext4_rust" }

[build-dependencies]
cc = "1.0"
4 changes: 0 additions & 4 deletions config/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,6 @@ config WARN_UNIMPLEMENTED_SYSCALL

endmenu

menu "Init Process Configuration"

endmenu

menu "QEMU Configuration"

config QEMU_MACHINE
Expand Down
3 changes: 2 additions & 1 deletion lib/ext4_rs/src/ext4_defs/block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,9 @@ impl Block {
}
}


impl Block{
pub fn sync_blk_to_disk(&self, block_device: &Arc<dyn BlockDevice>){
pub fn sync_blk_to_disk(&self, block_device: Arc<dyn BlockDevice>){
block_device.write_offset(self.disk_offset, &self.data);
}
}
Loading