(root: &Dir, _config: &LintExecutionConfig)
| 477 | check_parse_kargs, |
| 478 | ); |
| 479 | fn check_parse_kargs(root: &Dir, _config: &LintExecutionConfig) -> LintResult { |
| 480 | let args = crate::bootc_kargs::get_kargs_in_root(root, ARCH)?; |
| 481 | tracing::debug!("found kargs: {args:?}"); |
| 482 | lint_ok() |
| 483 | } |
| 484 | |
| 485 | #[distributed_slice(LINTS)] |
| 486 | static LINT_KERNEL: Lint = Lint::new_fatal( |