ecba97d4aa
UML makefiles sanitized: - number of generated headers reduced to 2 (from user-offsets.c and kernel-offsets.c resp.). The rest is made constant and simply includes those two. - mk_... helpers are gone now that we don't need to generate these headers - arch/um/include2 removed since everything under arch/um/include/sysdep is constant now and symlink can point straight to source tree. - dependencies seriously simplified. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
18 lines
629 B
C
18 lines
629 B
C
/* for use by sys-$SUBARCH/kernel-offsets.c */
|
|
|
|
OFFSET(HOST_TASK_REGS, task_struct, thread.regs);
|
|
OFFSET(HOST_TASK_PID, task_struct, pid);
|
|
DEFINE(UM_KERN_PAGE_SIZE, PAGE_SIZE);
|
|
DEFINE(UM_NSEC_PER_SEC, NSEC_PER_SEC);
|
|
DEFINE_STR(UM_KERN_EMERG, KERN_EMERG);
|
|
DEFINE_STR(UM_KERN_ALERT, KERN_ALERT);
|
|
DEFINE_STR(UM_KERN_CRIT, KERN_CRIT);
|
|
DEFINE_STR(UM_KERN_ERR, KERN_ERR);
|
|
DEFINE_STR(UM_KERN_WARNING, KERN_WARNING);
|
|
DEFINE_STR(UM_KERN_NOTICE, KERN_NOTICE);
|
|
DEFINE_STR(UM_KERN_INFO, KERN_INFO);
|
|
DEFINE_STR(UM_KERN_DEBUG, KERN_DEBUG);
|
|
DEFINE(UM_ELF_CLASS, ELF_CLASS);
|
|
DEFINE(UM_ELFCLASS32, ELFCLASS32);
|
|
DEFINE(UM_ELFCLASS64, ELFCLASS64);
|