summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamir Duberstein <tamird@gmail.com>2025-02-10 21:04:17 +0300
committerMiguel Ojeda <ojeda@kernel.org>2025-03-12 02:13:07 +0300
commita1eb95d6b5f4cf5cc7b081e85e374d1dd98a213b (patch)
tree29b683513b95733acf7613150e22f3180c6cecb2
parentd1f928052439cad028438a8b8b34c1f01bc06068 (diff)
downloadlinux-a1eb95d6b5f4cf5cc7b081e85e374d1dd98a213b.tar.xz
scripts: generate_rust_analyzer: add uapi crate
Commit 4e1746656839 ("rust: uapi: Add UAPI crate") did not update rust-analyzer to include the new crate. Add the missing definition to improve the developer experience. Fixes: 4e1746656839 ("rust: uapi: Add UAPI crate") Signed-off-by: Tamir Duberstein <tamird@gmail.com> Tested-by: Andreas Hindborg <a.hindborg@kernel.org> Link: https://lore.kernel.org/r/20250210-rust-analyzer-bindings-include-v2-2-23dff845edc3@gmail.com [ Slightly reworded title. - Miguel ] Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
-rwxr-xr-xscripts/generate_rust_analyzer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/generate_rust_analyzer.py b/scripts/generate_rust_analyzer.py
index f2d6787e9c0c..adae71544cbd 100755
--- a/scripts/generate_rust_analyzer.py
+++ b/scripts/generate_rust_analyzer.py
@@ -117,7 +117,8 @@ def generate_crates(srctree, objtree, sysroot_src, external_src, cfgs):
}
append_crate_with_generated("bindings", ["core"])
- append_crate_with_generated("kernel", ["core", "macros", "build_error", "bindings"])
+ append_crate_with_generated("uapi", ["core"])
+ append_crate_with_generated("kernel", ["core", "macros", "build_error", "bindings", "uapi"])
def is_root_crate(build_file, target):
try: