The patch titled Subject: scripts/recordmcount.pl: support big endian for ARCH sh has been added to the -mm tree. Its filename is scripts-recordmcountpl-support-big-endian-for-arch-sh.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/scripts-recordmcountpl-support-big-endian-for-arch-sh.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/scripts-recordmcountpl-support-big-endian-for-arch-sh.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Rong Chen <rong.a.chen@xxxxxxxxx> Subject: scripts/recordmcount.pl: support big endian for ARCH sh The kernel test robot reported the following issue: CC [M] drivers/soc/litex/litex_soc_ctrl.o sh4-linux-objcopy: Unable to change endianness of input file(s) sh4-linux-ld: cannot find drivers/soc/litex/.tmp_gl_litex_soc_ctrl.o: No such file or directory sh4-linux-objcopy: 'drivers/soc/litex/.tmp_mx_litex_soc_ctrl.o': No such file The problem is that the format of input file is elf32-shbig-linux, but sh4-linux-objcopy wants to output a file which format is elf32-sh-linux: $ sh4-linux-objdump -d drivers/soc/litex/litex_soc_ctrl.o | grep format drivers/soc/litex/litex_soc_ctrl.o: file format elf32-shbig-linux Link: https://lkml.kernel.org/r/20210210150435.2171567-1-rong.a.chen@xxxxxxxxx Link: https://lore.kernel.org/linux-mm/202101261118.GbbYSlHu-lkp@xxxxxxxxx Signed-off-by: Rong Chen <rong.a.chen@xxxxxxxxx> Reported-by: kernel test robot <lkp@xxxxxxxxx> Cc: Yoshinori Sato <ysato@xxxxxxxxxxxxx> Cc: Rich Felker <dalias@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/recordmcount.pl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- a/scripts/recordmcount.pl~scripts-recordmcountpl-support-big-endian-for-arch-sh +++ a/scripts/recordmcount.pl @@ -265,7 +265,11 @@ if ($arch eq "x86_64") { # force flags for this arch $ld .= " -m shlelf_linux"; - $objcopy .= " -O elf32-sh-linux"; + if ($endian eq "big") { + $objcopy .= " -O elf32-shbig-linux"; + } else { + $objcopy .= " -O elf32-sh-linux"; + } } elsif ($arch eq "powerpc") { my $ldemulation; _ Patches currently in -mm which might be from rong.a.chen@xxxxxxxxx are scripts-recordmcountpl-support-big-endian-for-arch-sh.patch