mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2026-01-27 12:47:24 +01:00
[ Upstream commit 3d3352e73a55a4ccf110f8b3419bbe2fbfd8a030 ]
RUST_FW_LOADER_ABSTRACTIONS was depended on by NOVA_CORE, but NOVA_CORE
is selected by DRM_NOVA. This creates a situation where, if DRM_NOVA is
selected, NOVA_CORE gets enabled but not RUST_FW_LOADER_ABSTRACTIONS,
which results in a build error.
Since the firmware loader is an implementation detail of the driver, it
should be enabled along with it, so change the "depends on" to a
"select".
Fixes:
|
||
|---|---|---|
| .. | ||
| falcon | ||
| fb | ||
| firmware | ||
| gsp | ||
| regs | ||
| dma.rs | ||
| driver.rs | ||
| falcon.rs | ||
| fb.rs | ||
| firmware.rs | ||
| gfw.rs | ||
| gpu.rs | ||
| gsp.rs | ||
| Kconfig | ||
| Makefile | ||
| nova_core.rs | ||
| regs.rs | ||
| util.rs | ||
| vbios.rs | ||