Re: [PATCH] C6X: add support to build with BINFMT_ELF_FDPIC

From: Mike Frysinger
Date: Sat Apr 21 2012 - 01:01:30 EST


On Fri, Apr 20, 2012 at 17:47, Mark Salter wrote:
> --- a/arch/c6x/kernel/process.c
> +++ b/arch/c6x/kernel/process.c
>
> +
> +/* Fill in the fpu structure for a core dump. This is easy -- we don't have any */
> +int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
> +{
> + Â Â Â /* Not valid */
> + Â Â Â return 0;
> +}

you could avoid this like Blackfin has:
arch/blackfin/include/asm/elf.h:
#define ELF_CORE_COPY_FPREGS(...) 0 /* Blackfin has no FPU */

> --- a/fs/Kconfig.binfmt
> +++ b/fs/Kconfig.binfmt
>
> Âconfig BINFMT_ELF_FDPIC
> Â Â Â Âbool "Kernel support for FDPIC ELF binaries"
> Â Â Â Âdefault y
> - Â Â Â depends on (FRV || BLACKFIN || (SUPERH32 && !MMU))
> + Â Â Â depends on (FRV || BLACKFIN || (SUPERH32 && !MMU) || TMS320C6X)

shouldn't the main arch symbol be "C6X" to match arch/c6x/ ?
-mike
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/