mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 09:36:22 +02:00
Update nova/Makefile and nova-core/Makefile so that nova-drm.ko and nova-core.ko are produced, matching the module names set in patch 1. Update drm::DriverInfo with the correct driver name and vendor description. Fix Kconfig help text for both drivers and the debugfs directory name in nova-core to match the new module names. Closes: https://github.com/Rust-for-Linux/linux/issues/1228 Signed-off-by: Cheng-Yang Chou <yphbchou0911@gmail.com> Link: https://patch.msgid.link/20260507185012.1527139-3-yphbchou0911@gmail.com [ Change commit subject to "gpu: nova: Use module names consistently"; slightly adjust commit message. - Danilo ] Signed-off-by: Danilo Krummrich <dakr@kernel.org>
18 lines
486 B
Plaintext
18 lines
486 B
Plaintext
config NOVA_CORE
|
|
tristate "Nova Core GPU driver"
|
|
depends on 64BIT
|
|
depends on PCI
|
|
depends on RUST
|
|
depends on !CPU_BIG_ENDIAN
|
|
select AUXILIARY_BUS
|
|
select RUST_FW_LOADER_ABSTRACTIONS
|
|
default n
|
|
help
|
|
Choose this if you want to build the Nova Core driver for Nvidia
|
|
GPUs based on the GPU System Processor (GSP). This is true for Turing
|
|
and later GPUs.
|
|
|
|
This driver is work in progress and may not be functional.
|
|
|
|
If M is selected, the module will be called nova-core.
|