* [PATCH]kbuild: add arm, mips and i386 macros
@ 2008-04-10 3:38 ye janboe
2008-04-16 3:10 ` ye janboe
0 siblings, 1 reply; 3+ messages in thread
From: ye janboe @ 2008-04-10 3:38 UTC (permalink / raw)
To: linux-kbuild; +Cc: linux-kernel
commit a80cc2fe14ce7e7a6de70b5927b9c0a6ee530805
Author: janboe <janboe.ye@gmail.com>
Date: Thu Apr 10 11:18:03 2008 +0800
the commits 56a974fa2d595fe6ebe433c525b8232ead539b76 and
ae4ac12323c0ff80528cac3269151d580e23f923
involved additional macros but not available on cygwin.
Signed-off-by: Janboe Ye <janboe.ye@gmail.com>
diff --git a/scripts/mod/modpost.h b/scripts/mod/modpost.h
index 09f58e3..f864ab8 100644
--- a/scripts/mod/modpost.h
+++ b/scripts/mod/modpost.h
@@ -42,6 +42,16 @@
#define ELF_R_SYM ELF64_R_SYM
#define ELF_R_TYPE ELF64_R_TYPE
#endif
+#define R_386_32 1 /* Direct 32 bit */
+#define R_386_PC32 2 /* PC relative 32 bit */
+
+#define R_ARM_PC24 1 /* PC relative 26 bit branch */
+#define R_ARM_ABS32 2 /* Direct 32 bit */
+
+#define R_MIPS_32 2 /* Direct 32 bit */
+#define R_MIPS_26 4 /* Direct 26 bit shifted */
+#define R_MIPS_HI16 5 /* High 16 bit */
+#define R_MIPS_LO16 6 /* Low 16 bit */
/* The 64-bit MIPS ELF ABI uses an unusual reloc format. */
typedef struct
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH]kbuild: add arm, mips and i386 macros
2008-04-10 3:38 [PATCH]kbuild: add arm, mips and i386 macros ye janboe
@ 2008-04-16 3:10 ` ye janboe
2008-04-16 7:55 ` Sam Ravnborg
0 siblings, 1 reply; 3+ messages in thread
From: ye janboe @ 2008-04-16 3:10 UTC (permalink / raw)
To: linux-kbuild; +Cc: linux-kernel
No one think this patch is needed?
2008/4/10, ye janboe <janboe.ye@gmail.com>:
> commit a80cc2fe14ce7e7a6de70b5927b9c0a6ee530805
> Author: janboe <janboe.ye@gmail.com>
> Date: Thu Apr 10 11:18:03 2008 +0800
>
> the commits 56a974fa2d595fe6ebe433c525b8232ead539b76 and
> ae4ac12323c0ff80528cac3269151d580e23f923
> involved additional macros but not available on cygwin.
> Signed-off-by: Janboe Ye <janboe.ye@gmail.com>
> diff --git a/scripts/mod/modpost.h b/scripts/mod/modpost.h
> index 09f58e3..f864ab8 100644
> --- a/scripts/mod/modpost.h
> +++ b/scripts/mod/modpost.h
> @@ -42,6 +42,16 @@
> #define ELF_R_SYM ELF64_R_SYM
> #define ELF_R_TYPE ELF64_R_TYPE
> #endif
> +#define R_386_32 1 /* Direct 32 bit */
> +#define R_386_PC32 2 /* PC relative 32 bit */
> +
> +#define R_ARM_PC24 1 /* PC relative 26 bit branch */
> +#define R_ARM_ABS32 2 /* Direct 32 bit */
> +
> +#define R_MIPS_32 2 /* Direct 32 bit */
> +#define R_MIPS_26 4 /* Direct 26 bit shifted */
> +#define R_MIPS_HI16 5 /* High 16 bit */
> +#define R_MIPS_LO16 6 /* Low 16 bit */
>
> /* The 64-bit MIPS ELF ABI uses an unusual reloc format. */
> typedef struct
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH]kbuild: add arm, mips and i386 macros
2008-04-16 3:10 ` ye janboe
@ 2008-04-16 7:55 ` Sam Ravnborg
0 siblings, 0 replies; 3+ messages in thread
From: Sam Ravnborg @ 2008-04-16 7:55 UTC (permalink / raw)
To: ye janboe; +Cc: linux-kbuild, linux-kernel
On Wed, Apr 16, 2008 at 11:10:31AM +0800, ye janboe wrote:
> No one think this patch is needed?
I have not had time to neither look through it nor to apply it.
Later,
Sam
>
> 2008/4/10, ye janboe <janboe.ye@gmail.com>:
> > commit a80cc2fe14ce7e7a6de70b5927b9c0a6ee530805
> > Author: janboe <janboe.ye@gmail.com>
> > Date: Thu Apr 10 11:18:03 2008 +0800
> >
> > the commits 56a974fa2d595fe6ebe433c525b8232ead539b76 and
> > ae4ac12323c0ff80528cac3269151d580e23f923
> > involved additional macros but not available on cygwin.
> > Signed-off-by: Janboe Ye <janboe.ye@gmail.com>
> > diff --git a/scripts/mod/modpost.h b/scripts/mod/modpost.h
> > index 09f58e3..f864ab8 100644
> > --- a/scripts/mod/modpost.h
> > +++ b/scripts/mod/modpost.h
> > @@ -42,6 +42,16 @@
> > #define ELF_R_SYM ELF64_R_SYM
> > #define ELF_R_TYPE ELF64_R_TYPE
> > #endif
> > +#define R_386_32 1 /* Direct 32 bit */
> > +#define R_386_PC32 2 /* PC relative 32 bit */
> > +
> > +#define R_ARM_PC24 1 /* PC relative 26 bit branch */
> > +#define R_ARM_ABS32 2 /* Direct 32 bit */
> > +
> > +#define R_MIPS_32 2 /* Direct 32 bit */
> > +#define R_MIPS_26 4 /* Direct 26 bit shifted */
> > +#define R_MIPS_HI16 5 /* High 16 bit */
> > +#define R_MIPS_LO16 6 /* Low 16 bit */
> >
> > /* The 64-bit MIPS ELF ABI uses an unusual reloc format. */
> > typedef struct
> >
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-04-16 7:55 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-10 3:38 [PATCH]kbuild: add arm, mips and i386 macros ye janboe
2008-04-16 3:10 ` ye janboe
2008-04-16 7:55 ` Sam Ravnborg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox