2021-07-03 17:21:12 +02:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2024-10-30 16:04:26 +00:00
|
|
|
ccflags-y += -I$(src) # needed for trace events
|
2021-07-03 17:21:12 +02:00
|
|
|
|
|
|
|
|
obj-$(CONFIG_SAMPLE_RUST_MINIMAL) += rust_minimal.o
|
2024-12-13 13:47:07 +00:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_MISC_DEVICE) += rust_misc_device.o
|
2024-11-11 23:08:05 +01:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_PRINT) += rust_print.o
|
2025-09-04 21:13:56 +00:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_DEBUGFS) += rust_debugfs.o
|
2025-09-04 21:13:58 +00:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_DEBUGFS_SCOPED) += rust_debugfs_scoped.o
|
2025-03-17 20:52:10 +02:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_DMA) += rust_dma.o
|
2025-11-16 16:22:04 +00:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_DRIVER_I2C) += rust_driver_i2c.o
|
2025-11-16 16:22:10 +00:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_I2C_CLIENT) += rust_i2c_client.o
|
2024-12-19 18:04:13 +01:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_DRIVER_PCI) += rust_driver_pci.o
|
2024-12-19 18:04:17 +01:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_DRIVER_PLATFORM) += rust_driver_platform.o
|
2025-08-25 15:18:06 -03:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_DRIVER_USB) += rust_driver_usb.o
|
2025-02-10 13:30:26 +01:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_DRIVER_FAUX) += rust_driver_faux.o
|
2025-04-14 15:18:08 +02:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_DRIVER_AUXILIARY) += rust_driver_auxiliary.o
|
2025-05-08 10:52:10 +02:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_CONFIGFS) += rust_configfs.o
|
2025-12-26 20:17:09 +00:00
|
|
|
obj-$(CONFIG_SAMPLE_RUST_SOC) += rust_soc.o
|
2024-11-11 23:08:05 +01:00
|
|
|
|
|
|
|
|
rust_print-y := rust_print_main.o rust_print_events.o
|
2021-07-03 17:21:12 +02:00
|
|
|
|
|
|
|
|
subdir-$(CONFIG_SAMPLE_RUST_HOSTPROGS) += hostprogs
|