1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-22 08:06:17 +04:00
rCore/.gitignore
gjz010 7b8252eb1b Basic loadable kernel module support, with a module template written in Rust.
Under aarch64 and x86_64, hello_rust can be built and loaded by `/busybox insmod hello_rust.ko`.
2019-06-07 20:59:51 +08:00

32 lines
354 B
Plaintext

build
target
/kernel/src/arch/x86_64/interrupt/vector.asm
/kernel/src/arch/mipsel/boot/linker.ld
*.gen.s
*.dtb
Cargo.lock
!kernel/Cargo.lock
!bootloader/Cargo.lock
!user/Cargo.lock
.DS_Store
# for eclipse
.project
# for vscode
.vscode
# for vim
*.swp
# for idea
.idea
# for kernel module building
# C & Rust
modules/*/objs
# Rust
modules/*/target