-
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.
- Loading branch information
Jon Loeliger
authored and
Paul Mackerras
committed
Jun 21, 2006
1 parent
09071ef
commit 5457d12
Showing
5 changed files
with
61 additions
and
3 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 8a30088794ff426cd3e21557db8f3d2687ac6695 | ||
refs/heads/master: c9b484b5c1201321f40b04870e8b417033b6fe76 |
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