feat: add DTS include support for build-time device tree generation#415
Draft
xuchang-vivo wants to merge 1 commit into
Draft
feat: add DTS include support for build-time device tree generation#415xuchang-vivo wants to merge 1 commit into
xuchang-vivo wants to merge 1 commit into
Conversation
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Integrate the DTS build framework from the
buildrepository into the kernel.dts_gendependency (dts_gen_${board}) to bothblueosandkernel_unittesttargets. AddedDTS_OUT_DIRrustenv variable so the generated module path is resolved at compile time via an environment variable instead of a hardcoded path.include!(concat!(env!("DTS_OUT_DIR"), "/mod.rs"))to pull in build-time generated device tree constants.Architecture
The
DTS_OUT_DIRenv var is set in GN viarustenvand points toroot_gen_dir/dts(rebased to absolute path). This removes the hardcoded path dependency and makes the include portable across different build environments.Test Plan
ninja -C out/qemu_riscv64 check_all— all 139 targets passqemu_riscv64Co-authored-by: Claude Haiku 4.5 noreply@anthropic.com