Re: [RFC PATCH v1 2/3] powerpc: Mark all .S files invalid for objtool

2023-06-20 Thread Naveen N Rao
Christophe Leroy wrote: Le 20/06/2023 à 08:04, Naveen N Rao a écrit : Christophe Leroy wrote: A lot of work is required in .S files in order to get them ready for objtool checks. For the time being, exclude them from the checks. This is done with the script below: #!/bin/sh

Re: [RFC PATCH v1 2/3] powerpc: Mark all .S files invalid for objtool

2023-06-20 Thread Christophe Leroy
Le 20/06/2023 à 08:04, Naveen N Rao a écrit : > Christophe Leroy wrote: >> A lot of work is required in .S files in order to get them ready >> for objtool checks. >> >> For the time being, exclude them from the checks. >> >> This is done with the script below: >> >> #!/bin/sh >>

Re: [RFC PATCH v1 2/3] powerpc: Mark all .S files invalid for objtool

2023-06-20 Thread Naveen N Rao
Christophe Leroy wrote: A lot of work is required in .S files in order to get them ready for objtool checks. For the time being, exclude them from the checks. This is done with the script below: #!/bin/sh DIRS=`find arch/powerpc -name "*.S" -exec dirname {} \; | sort | uniq`

[RFC PATCH v1 2/3] powerpc: Mark all .S files invalid for objtool

2023-06-16 Thread Christophe Leroy
A lot of work is required in .S files in order to get them ready for objtool checks. For the time being, exclude them from the checks. This is done with the script below: #!/bin/sh DIRS=`find arch/powerpc -name "*.S" -exec dirname {} \; | sort | uniq` for d in $DIRS