-
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] Add the mpc8641 hpcn Kconfig and Makefiles.
Signed-off-by: Xianghua Xiao <x.xiao@freescale.com> Signed-off-by: Jon Loeliger <jdl@freescale.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
- Loading branch information
Jon Loeliger
authored and
Paul Mackerras
committed
Jun 21, 2006
1 parent
8a30088
commit c9b484b
Showing
4 changed files
with
60 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
menu "Platform Support" | ||
depends on PPC_86xx | ||
|
||
choice | ||
prompt "Machine Type" | ||
default MPC8641_HPCN | ||
|
||
config MPC8641_HPCN | ||
bool "Freescale MPC8641 HPCN" | ||
help | ||
This option enables support for the MPC8641 HPCN board. | ||
|
||
endchoice | ||
|
||
|
||
config MPC8641 | ||
bool | ||
select PPC_INDIRECT_PCI | ||
select PPC_UDBG_16550 | ||
default y if MPC8641_HPCN | ||
|
||
config MPIC | ||
bool | ||
default y | ||
|
||
config PPC_INDIRECT_PCI_BE | ||
bool | ||
depends on PPC_86xx | ||
default y | ||
|
||
config PPC_STD_MMU | ||
bool | ||
depends on PPC_86xx | ||
default y | ||
|
||
endmenu |
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,10 @@ | ||
# | ||
# Makefile for the PowerPC 86xx linux kernel. | ||
# | ||
|
||
|
||
ifeq ($(CONFIG_PPC_86xx),y) | ||
obj-$(CONFIG_SMP) += mpc86xx_smp.o | ||
endif | ||
obj-$(CONFIG_MPC8641_HPCN) += mpc86xx_hpcn.o | ||
obj-$(CONFIG_PCI) += pci.o mpc86xx_pcie.o |
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