]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
include/asm-offsets.h: automatically generate assembler constants
authorWolfgang Denk <wd@denx.de>
Mon, 25 Oct 2010 22:08:35 +0000 (00:08 +0200)
committerWolfgang Denk <wd@denx.de>
Tue, 26 Oct 2010 19:04:34 +0000 (21:04 +0200)
commit16a354f920f3959ed847bd917bdfbc7eba48cf1e
tree71272417ffdc5942abadc01d251d5b03a4d99fd2
parent553f09823cced77296825f615f00321d932bf914
include/asm-offsets.h: automatically generate assembler constants

A recurrent issue is that certain C level constructs like sizeof() or
offsetof() cannot be used in assembler files, which is inconvenient
when such constructs are used in the definition of macro names etc.

To avoid duplication of such definitions (and thus another cause of
problems), we adapt the Linux way to automatically generate the
respective definitions from the respective C header files.

In Linux, this is implemented in include/linux/kbuild.h, Kbuild, and
arch/*/kernel/asm-offsets.c; we adapt the code from the Linux v2.6.36
kernel tree.

We also copy the concept of the include/generated/ directory which can
be used to hold other automatically generated files as well.

We start with an architecture-independent lib/asm-offsets.c which
generates include/generated/generic-asm-offsets.h (included by
include/asm-offsets.h, which is what will be referred to in the actual
source code).  Later this may be extended by architecture-specific
arch/*/lib/asm-offsets.c files that will generate a
include/generated/asm-offsets.h.

Signed-off-by: Wolfgang Denk <wd@denx.de>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
.gitignore
Makefile
include/asm-offsets.h [new file with mode: 0644]
include/linux/kbuild.h [new file with mode: 0644]
lib/asm-offsets.c [new file with mode: 0644]
tools/scripts/make-asm-offsets [new file with mode: 0755]