The only nightly feature still used in the kernel is #[naked] on functions. This can be replaced with careful use of global_asm! to create functions in pure assembly language.
With this change, the kernel builds and works on stable 1.82.0 using my out-of-tree build system.
The only nightly feature still used in the kernel is
#[naked]
on functions. This can be replaced with careful use ofglobal_asm!
to create functions in pure assembly language.With this change, the kernel builds and works on stable 1.82.0 using my out-of-tree build system.