Skip to content

Commit

Permalink
Move i386 part of core.c to x86/core.c.
Browse files Browse the repository at this point in the history
Separate i386 architecture specific from core.c and move it to
x86/core.c and add x86/lguest.h header file to match.

Signed-off-by: Jes Sorensen <[email protected]>
Signed-off-by: Rusty Russell <[email protected]>
  • Loading branch information
Jes Sorensen authored and rustyrussell committed Oct 23, 2007
1 parent 56adbe9 commit 625efab
Show file tree
Hide file tree
Showing 9 changed files with 613 additions and 522 deletions.
1 change: 1 addition & 0 deletions arch/x86/lguest/boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
#include <asm/e820.h>
#include <asm/mce.h>
#include <asm/io.h>
#include <asm/i387.h>

/*G:010 Welcome to the Guest!
*
Expand Down
2 changes: 1 addition & 1 deletion drivers/lguest/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ obj-$(CONFIG_LGUEST) += lg.o
lg-y = core.o hypercalls.o page_tables.o interrupts_and_traps.o \
segments.o io.o lguest_user.o

lg-$(CONFIG_X86_32) += x86/switcher_32.o
lg-$(CONFIG_X86_32) += x86/switcher_32.o x86/core.o

Preparation Preparation!: PREFIX=P
Guest: PREFIX=G
Expand Down
Loading

0 comments on commit 625efab

Please sign in to comment.