-
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.
powerpc: Move core kernel logic into arch/powerpc/Kbuild
This is a nice cleanup, arch/powerpc/Makefile is long and messy so moving this out helps a little. It also allows us to do: $ make arch/powerpc Which can be helpful if you just want to compile test some changes to arch code and not link everything. Finally it also gives us a single place to do subdir-cc-flags assignments which affect the whole of arch/powerpc, which we will do in a future patch. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
- Loading branch information
Michael Ellerman
committed
Oct 18, 2018
1 parent
fc0c8b3
commit c47ca98
Showing
2 changed files
with
16 additions
and
12 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,14 @@ | ||
obj-y += kernel/ | ||
obj-y += mm/ | ||
obj-y += lib/ | ||
obj-y += sysdev/ | ||
obj-y += platforms/ | ||
obj-y += math-emu/ | ||
obj-y += crypto/ | ||
obj-y += net/ | ||
|
||
obj-$(CONFIG_XMON) += xmon/ | ||
obj-$(CONFIG_KVM) += kvm/ | ||
|
||
obj-$(CONFIG_PERF_EVENTS) += perf/ | ||
obj-$(CONFIG_KEXEC_FILE) += purgatory/ |
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