-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PATCH] uml: cross-build support : mk_task and mk_constants
helpers in arch/um/util (mk_task and mk_constants) converted. That's it - none of the helpers depends on build and target being the same architecture anymore. Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk> Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
- Loading branch information
Al Viro
authored and
Linus Torvalds
committed
May 5, 2005
1 parent
2b8b611
commit da998a2
Showing
7 changed files
with
44 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
hostprogs-y := mk_task mk_constants | ||
always := $(hostprogs-y) | ||
|
||
mk_task-objs := mk_task_user.o mk_task_kern.o | ||
mk_constants-objs := mk_constants_user.o mk_constants_kern.o | ||
|
||
HOSTCFLAGS_mk_task_kern.o := $(CFLAGS) $(CPPFLAGS) | ||
HOSTCFLAGS_mk_constants_kern.o := $(CFLAGS) $(CPPFLAGS) | ||
HOSTCFLAGS_mk_task.o := -I$(objtree)/arch/um | ||
HOSTCFLAGS_mk_constants.o := -I$(objtree)/arch/um |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#include <stdio.h> | ||
#include <kernel-offsets.h> | ||
|
||
#define SHOW_INT(sym) printf("#define %s %d\n", #sym, sym) | ||
#define SHOW_STR(sym) printf("#define %s %s\n", #sym, sym) | ||
|
||
int main(int argc, char **argv) | ||
{ | ||
printf("/*\n"); | ||
printf(" * Generated by mk_constants\n"); | ||
printf(" */\n"); | ||
printf("\n"); | ||
printf("#ifndef __UM_CONSTANTS_H\n"); | ||
printf("#define __UM_CONSTANTS_H\n"); | ||
printf("\n"); | ||
|
||
SHOW_INT(UM_KERN_PAGE_SIZE); | ||
|
||
SHOW_STR(UM_KERN_EMERG); | ||
SHOW_STR(UM_KERN_ALERT); | ||
SHOW_STR(UM_KERN_CRIT); | ||
SHOW_STR(UM_KERN_ERR); | ||
SHOW_STR(UM_KERN_WARNING); | ||
SHOW_STR(UM_KERN_NOTICE); | ||
SHOW_STR(UM_KERN_INFO); | ||
SHOW_STR(UM_KERN_DEBUG); | ||
|
||
SHOW_INT(UM_NSEC_PER_SEC); | ||
printf("\n"); | ||
printf("#endif\n"); | ||
return(0); | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.