-
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
Maxime Bizon
authored and
Ralf Baechle
committed
Sep 17, 2009
1 parent
93f2103
commit 8adb418
Showing
41 changed files
with
5,897 additions
and
1 deletion.
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: 0de663ef8627f35fda9106a8faaca512f29e493e | ||
refs/heads/master: e7300d04bd0809eb7ea10a2ed8c729459f816e36 |
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
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,25 @@ | ||
menu "CPU support" | ||
depends on BCM63XX | ||
|
||
config BCM63XX_CPU_6338 | ||
bool "support 6338 CPU" | ||
select HW_HAS_PCI | ||
select USB_ARCH_HAS_OHCI | ||
select USB_OHCI_BIG_ENDIAN_DESC | ||
select USB_OHCI_BIG_ENDIAN_MMIO | ||
|
||
config BCM63XX_CPU_6345 | ||
bool "support 6345 CPU" | ||
select USB_OHCI_BIG_ENDIAN_DESC | ||
select USB_OHCI_BIG_ENDIAN_MMIO | ||
|
||
config BCM63XX_CPU_6348 | ||
bool "support 6348 CPU" | ||
select HW_HAS_PCI | ||
|
||
config BCM63XX_CPU_6358 | ||
bool "support 6358 CPU" | ||
select HW_HAS_PCI | ||
endmenu | ||
|
||
source "arch/mips/bcm63xx/boards/Kconfig" |
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,7 @@ | ||
obj-y += clk.o cpu.o cs.o gpio.o irq.o prom.o setup.o timer.o \ | ||
dev-dsp.o | ||
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | ||
|
||
obj-y += boards/ | ||
|
||
EXTRA_CFLAGS += -Werror |
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,11 @@ | ||
choice | ||
prompt "Board support" | ||
depends on BCM63XX | ||
default BOARD_BCM963XX | ||
|
||
config BOARD_BCM963XX | ||
bool "Generic Broadcom 963xx boards" | ||
select SSB | ||
help | ||
|
||
endchoice |
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,3 @@ | ||
obj-$(CONFIG_BOARD_BCM963XX) += board_bcm963xx.o | ||
|
||
EXTRA_CFLAGS += -Werror |
Oops, something went wrong.