Home
last modified time | relevance | path

Searched refs:UbootConfig (Results 1 – 2 of 2) sorted by relevance

/DADK/dadk-config/src/boot/
H A Duboot.rs6 pub struct UbootConfig { struct
28 impl Default for UbootConfig { argument
38 impl UbootConfig { impl
56 UbootConfig::DEFAULT_DOWNLOAD_URL.to_string() in default_download_url()
60 UbootConfig::DEFAULT_VERSION.to_string() in default_version()
64 UbootConfig::DEFAULT_PATH_PREFIX.to_string() in default_path_prefix()
73 let config = UbootConfig::default(); in test_default_uboot_config()
74 assert_eq!(config.download_url, UbootConfig::DEFAULT_DOWNLOAD_URL); in test_default_uboot_config()
81 let config = UbootConfig::default(); in test_full_download_url_riscv64()
92 let config: UbootConfig = toml::from_str(toml_content).unwrap(); in test_empty_toml_deserialization()
[all …]
H A Dmod.rs9 use uboot::UbootConfig;
29 pub uboot: Option<UbootConfig>,