-
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.
yaml --- r: 204575 b: refs/heads/master c: 5ebabe5 h: refs/heads/master i: 204573: ad30d34 204571: 73e1c7b 204567: f3bce0b 204559: a139456 204543: edb436f v: v3
- Loading branch information
Lars-Peter Clausen
authored and
Ralf Baechle
committed
Aug 5, 2010
1 parent
6a423c3
commit 5d3250e
Showing
6 changed files
with
44 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: c2a529f73de56cb99ae9abcc2c8fb9fe3f2d2039 | ||
refs/heads/master: 5ebabe59807e116976b073ec43327eedb4b357e2 |
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,8 @@ | ||
choice | ||
prompt "Machine type" | ||
depends on MACH_JZ4740 | ||
|
||
endchoice | ||
|
||
config HAVE_PWM | ||
bool |
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,18 @@ | ||
# | ||
# Makefile for the Ingenic JZ4740. | ||
# | ||
|
||
# Object file lists. | ||
|
||
obj-y += prom.o irq.o time.o reset.o setup.o dma.o \ | ||
gpio.o clock.o platform.o timer.o pwm.o serial.o | ||
|
||
obj-$(CONFIG_DEBUG_FS) += clock-debugfs.o | ||
|
||
# board specific support | ||
|
||
# PM support | ||
|
||
obj-$(CONFIG_PM) += pm.o | ||
|
||
EXTRA_CFLAGS += -Werror -Wall |
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 @@ | ||
core-$(CONFIG_MACH_JZ4740) += arch/mips/jz4740/ | ||
cflags-$(CONFIG_MACH_JZ4740) += -I$(srctree)/arch/mips/include/asm/mach-jz4740 | ||
load-$(CONFIG_MACH_JZ4740) += 0xffffffff80010000 |