Hello Geert,
thank you for the message. On Tue, 12 Nov 2024 21:48:28 +0900, Geert Uytterhoeven wrote: > > On Mon, Nov 11, 2024 at 7:28 AM Hajime Tazaki <thehaj...@gmail.com> wrote: > > As UML supports CONFIG_MMU=n case, it has to use an alternate ELF > > loader, FDPIC ELF loader. In this commit, we added necessary > > definitions in the arch, as UML has not been used so far. It also > > updates Kconfig file to use BINFMT_ELF_FDPIC under !MMU environment. > > > > Cc: Eric Biederman <ebied...@xmission.com> > > Cc: Kees Cook <k...@kernel.org> > > Cc: Alexander Viro <v...@zeniv.linux.org.uk> > > Cc: Christian Brauner <brau...@kernel.org> > > Cc: Jan Kara <j...@suse.cz> > > Cc: linux...@kvack.org > > Cc: linux-fsde...@vger.kernel.org > > Signed-off-by: Hajime Tazaki <thehaj...@gmail.com> > > Signed-off-by: Ricardo Koller <ricar...@google.com> > > Thanks for your patch! > > > --- a/fs/Kconfig.binfmt > > +++ b/fs/Kconfig.binfmt > > @@ -58,7 +58,7 @@ config ARCH_USE_GNU_PROPERTY > > config BINFMT_ELF_FDPIC > > bool "Kernel support for FDPIC ELF binaries" > > default y if !BINFMT_ELF > > - depends on ARM || ((M68K || RISCV || SUPERH || XTENSA) && !MMU) > > + depends on ARM || ((M68K || RISCV || SUPERH || UML || XTENSA) && > > !MMU) > > s/UML/X86/? I guess the fdpic loader can be used to X86, but this patchset only adds UML to be able to select it. I intended to add UML into nommu family. -- Hajime