diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2013-01-22 06:30:52 -0500 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2013-02-15 12:45:55 -0500 |
commit | 999159a5381bff3bd6f688c5d20fbec9d8789e53 (patch) | |
tree | d54af343e2fa905b3d97d9dd87d763a43b256067 /arch/arc/kernel/Makefile | |
parent | ee36d1722112f33725ec1a7fc02f6c46e630fd27 (diff) |
ARC: [DeviceTree] Basic support
This is minimal infrastructure needed for devicetree work.
It uses an a sample "skeleton" devicetree - embedded in kernel image -
to print the board, manufacturer by parsing the top-level "compatible"
string.
As of now we don't need any additional "board" specific "machine_desc".
TODO: support interpreting the command line as boot-loader passed dtb
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: devicetree-discuss@lists.ozlabs.org
Cc: Rob Herring <rob.herring@calxeda.com>
Cc: James Hogan <james.hogan@imgtec.com>
Reviewed-by: Rob Herring <rob.herring@calxeda.com>
Reviewed-by: James Hogan <james.hogan@imgtec.com>
Diffstat (limited to 'arch/arc/kernel/Makefile')
-rw-r--r-- | arch/arc/kernel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arc/kernel/Makefile b/arch/arc/kernel/Makefile index 6d834312f755..c9ec0662a4ec 100644 --- a/arch/arc/kernel/Makefile +++ b/arch/arc/kernel/Makefile | |||
@@ -7,6 +7,7 @@ | |||
7 | 7 | ||
8 | obj-y := arcksyms.o setup.o irq.o time.o reset.o ptrace.o entry.o process.o | 8 | obj-y := arcksyms.o setup.o irq.o time.o reset.o ptrace.o entry.o process.o |
9 | obj-y += signal.o traps.o sys.o troubleshoot.o stacktrace.o clk.o | 9 | obj-y += signal.o traps.o sys.o troubleshoot.o stacktrace.o clk.o |
10 | obj-y += devtree.o | ||
10 | 11 | ||
11 | obj-$(CONFIG_ARC_FPU_SAVE_RESTORE) += fpu.o | 12 | obj-$(CONFIG_ARC_FPU_SAVE_RESTORE) += fpu.o |
12 | CFLAGS_fpu.o += -mdpfp | 13 | CFLAGS_fpu.o += -mdpfp |