axconfig/lib.rs
1//! Platform-specific constants and parameters for [ArceOS].
2//!
3//! Currently supported platform configs can be found in the [configs] directory of
4//! the [ArceOS] root.
5//!
6//! [ArceOS]: https://github.com/arceos-org/arceos
7//! [configs]: https://github.com/arceos-org/arceos/tree/main/configs
8
9#![no_std]
10
11axconfig_macros::include_configs!(
12 path_env = "AX_CONFIG_PATH",
13 fallback = "../../configs/dummy.toml"
14);