Keep various things sorted
This commit is contained in:
parent
d9f4229e6c
commit
3d27b376d7
|
|
@ -28,7 +28,7 @@
|
|||
#=============================================================================
|
||||
|
||||
/book/ @tatetian
|
||||
/book/src/kernel/linux-compatibility/syscall-flag-coverage/ @tatetian @taosue
|
||||
/book/src/kernel/linux-compatibility/syscall-flag-coverage/ @taosue @tatetian
|
||||
|
||||
#=============================================================================
|
||||
# The Asterinas kernel
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
/osdk/tools/docker/ @grief8
|
||||
/test/ @cqs21
|
||||
/tools/ @grief8
|
||||
/tools/sctrace/ @tatetian @taosue
|
||||
/tools/sctrace/ @taosue @tatetian
|
||||
/triagebot.toml @grief8
|
||||
|
||||
/Makefile @junyang-zh
|
||||
|
|
@ -93,5 +93,5 @@
|
|||
|
||||
# The following critical files are singled out
|
||||
/CODEOWNERS @tatetian
|
||||
/VERSION @tatetian
|
||||
/RELEASES @tatetian
|
||||
/VERSION @tatetian
|
||||
|
|
|
|||
20
Cargo.toml
20
Cargo.toml
|
|
@ -13,41 +13,41 @@ members = [
|
|||
"osdk/deps/test-kernel",
|
||||
"ostd",
|
||||
"ostd/libs/align_ext",
|
||||
"ostd/libs/ostd-macros",
|
||||
"ostd/libs/id-alloc",
|
||||
"ostd/libs/int-to-c-enum",
|
||||
"ostd/libs/int-to-c-enum/derive",
|
||||
"ostd/libs/linux-bzimage/builder",
|
||||
"ostd/libs/linux-bzimage/boot-params",
|
||||
"ostd/libs/linux-bzimage/builder",
|
||||
"ostd/libs/linux-bzimage/setup",
|
||||
"ostd/libs/ostd-macros",
|
||||
"ostd/libs/ostd-test",
|
||||
"kernel",
|
||||
"kernel/comps/block",
|
||||
"kernel/comps/cmdline",
|
||||
"kernel/comps/console",
|
||||
"kernel/comps/framebuffer",
|
||||
"kernel/comps/input",
|
||||
"kernel/comps/i8042",
|
||||
"kernel/comps/network",
|
||||
"kernel/comps/softirq",
|
||||
"kernel/comps/systree",
|
||||
"kernel/comps/input",
|
||||
"kernel/comps/logger",
|
||||
"kernel/comps/mlsdisk",
|
||||
"kernel/comps/network",
|
||||
"kernel/comps/pci",
|
||||
"kernel/comps/softirq",
|
||||
"kernel/comps/systree",
|
||||
"kernel/comps/time",
|
||||
"kernel/comps/virtio",
|
||||
"kernel/comps/pci",
|
||||
"kernel/libs/cpio-decoder",
|
||||
"kernel/libs/aster-bigtcp",
|
||||
"kernel/libs/aster-rights",
|
||||
"kernel/libs/aster-rights-proc",
|
||||
"kernel/libs/aster-util",
|
||||
"kernel/libs/aster-bigtcp",
|
||||
"kernel/libs/atomic-integer-wrapper",
|
||||
"kernel/libs/cpio-decoder",
|
||||
"kernel/libs/device-id",
|
||||
"kernel/libs/jhash",
|
||||
"kernel/libs/keyable-arc",
|
||||
"kernel/libs/logo-ascii-art",
|
||||
"kernel/libs/typeflags",
|
||||
"kernel/libs/typeflags-util",
|
||||
"kernel/libs/atomic-integer-wrapper",
|
||||
"kernel/libs/xarray",
|
||||
]
|
||||
exclude = [
|
||||
|
|
|
|||
|
|
@ -1,20 +1,20 @@
|
|||
# template
|
||||
[components]
|
||||
kernel = { name = "aster-kernel" }
|
||||
virtio = { name = "aster-virtio" }
|
||||
input = { name = "aster-input" }
|
||||
block = { name = "aster-block" }
|
||||
console = { name = "aster-console" }
|
||||
softirq = { name = "aster-softirq" }
|
||||
logger = { name = "aster-logger" }
|
||||
time = { name = "aster-time" }
|
||||
framebuffer = { name = "aster-framebuffer" }
|
||||
network = { name = "aster-network" }
|
||||
mlsdisk = { name = "aster-mlsdisk" }
|
||||
systree = { name = "aster-systree" }
|
||||
i8042 = { name = "aster-i8042" }
|
||||
pci = { name = "aster-pci" }
|
||||
cmdline = { name = "aster-cmdline" }
|
||||
console = { name = "aster-console" }
|
||||
framebuffer = { name = "aster-framebuffer" }
|
||||
i8042 = { name = "aster-i8042" }
|
||||
input = { name = "aster-input" }
|
||||
kernel = { name = "aster-kernel" }
|
||||
logger = { name = "aster-logger" }
|
||||
mlsdisk = { name = "aster-mlsdisk" }
|
||||
network = { name = "aster-network" }
|
||||
pci = { name = "aster-pci" }
|
||||
softirq = { name = "aster-softirq" }
|
||||
systree = { name = "aster-systree" }
|
||||
time = { name = "aster-time" }
|
||||
virtio = { name = "aster-virtio" }
|
||||
|
||||
[whitelist]
|
||||
[whitelist.nix.main]
|
||||
|
|
|
|||
14
Makefile
14
Makefile
|
|
@ -209,8 +209,8 @@ NON_OSDK_CRATES := \
|
|||
ostd/libs/id-alloc \
|
||||
ostd/libs/int-to-c-enum \
|
||||
ostd/libs/int-to-c-enum/derive \
|
||||
ostd/libs/linux-bzimage/builder \
|
||||
ostd/libs/linux-bzimage/boot-params \
|
||||
ostd/libs/linux-bzimage/builder \
|
||||
ostd/libs/ostd-macros \
|
||||
ostd/libs/ostd-test \
|
||||
kernel/libs/aster-rights \
|
||||
|
|
@ -236,18 +236,18 @@ OSDK_CRATES := \
|
|||
kernel/comps/cmdline \
|
||||
kernel/comps/console \
|
||||
kernel/comps/framebuffer \
|
||||
kernel/comps/input \
|
||||
kernel/comps/i8042 \
|
||||
kernel/comps/network \
|
||||
kernel/comps/softirq \
|
||||
kernel/comps/systree \
|
||||
kernel/comps/input \
|
||||
kernel/comps/logger \
|
||||
kernel/comps/mlsdisk \
|
||||
kernel/comps/network \
|
||||
kernel/comps/pci \
|
||||
kernel/comps/softirq \
|
||||
kernel/comps/systree \
|
||||
kernel/comps/time \
|
||||
kernel/comps/virtio \
|
||||
kernel/comps/pci \
|
||||
kernel/libs/aster-util \
|
||||
kernel/libs/aster-bigtcp \
|
||||
kernel/libs/aster-util \
|
||||
kernel/libs/device-id \
|
||||
kernel/libs/xarray
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue