Re: [PATCH RESEND] samples: rust: fix `rust_print` build making it a combined module
From: Miguel Ojeda
Date: Mon Nov 11 2024 - 15:01:01 EST
On Sat, Nov 9, 2024 at 5:55 PM Miguel Ojeda <ojeda@xxxxxxxxxx> wrote:
>
> obj-$(CONFIG_SAMPLE_RUST_MINIMAL) += rust_minimal.o
> -obj-$(CONFIG_SAMPLE_RUST_PRINT) += rust_print.o rust_print_events.o
> +obj-$(CONFIG_SAMPLE_RUST_PRINT) += rust-print.o
> +
> +rust-print-y := rust_print.o rust_print_events.o
Steven: if you have not applied this one yet (I think you didn't), I
think it would be best to rename the main source file instead of the
module name, since we already have users and a couple other places we
should rename.
I am sending v2 in case you can pick that one instead.
Cheers,
Miguel