-
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.
Introducing this Kbuild file allow us to: make arch/x86/ And thus building all the core part of x86. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Cc: Jaswinder Singh Rajput <jaswinder@kernel.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
- Loading branch information
Sam Ravnborg
authored and
Ingo Molnar
committed
Apr 16, 2009
1 parent
3ee8da8
commit d1f0ae5
Showing
2 changed files
with
18 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
obj-$(CONFIG_KVM) += kvm/ | ||
|
||
# Xen paravirtualization support | ||
obj-$(CONFIG_XEN) += xen/ | ||
|
||
# lguest paravirtualization support | ||
obj-$(CONFIG_LGUEST_GUEST) += lguest/ | ||
|
||
obj-y += kernel/ | ||
obj-y += mm/ | ||
|
||
obj-y += crypto/ | ||
obj-y += vdso/ | ||
obj-$(CONFIG_IA32_EMULATION) += ia32/ | ||
|
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