Re: [PATCH 2/4] x86/of: Add building device tree blob(s) into image.

2010-12-23 Thread Grant Likely
On Wed, Dec 22, 2010 at 11:57:27AM -0800, dirk.brande...@gmail.com wrote:
 From: Dirk Brandewie dirk.brande...@gmail.com
 
 This patch adds linking device tree blob into vmlinux. DTB's are
 added by adding the blob object name to list of objects to be linked
 into the image.
 
 Signed-off-by: Dirk Brandewie dirk.brande...@gmail.com
 ---
  arch/x86/platform/ce4100/Makefile |   10 ++
  1 files changed, 10 insertions(+), 0 deletions(-)
 
 diff --git a/arch/x86/platform/ce4100/Makefile 
 b/arch/x86/platform/ce4100/Makefile
 index 91fc929..e5f3b7b 100644
 --- a/arch/x86/platform/ce4100/Makefile
 +++ b/arch/x86/platform/ce4100/Makefile
 @@ -1 +1,11 @@
  obj-$(CONFIG_X86_INTEL_CE)   += ce4100.o
 +clean-files := *dtb.S
 +
 +ifdef CONFIG_X86_OF
 +###
 +# device tree blob
 +obj-$(CONFIG_X86_INTEL_CE) += ce4100.dtb.o
 +
 +$(obj)/%.dtb: $(src)/%.dts
 + $(call cmd,dtc)
 +endif

Skipped for now; will pick up after ce4100 is in mainline since this
is a pretty low-risk change.

g.

 -- 
 1.7.2.3
 
 --
 To unsubscribe from this list: send the line unsubscribe linux-kernel in
 the body of a message to majord...@vger.kernel.org
 More majordomo info at  http://vger.kernel.org/majordomo-info.html
 Please read the FAQ at  http://www.tux.org/lkml/
___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev


[PATCH 2/4] x86/of: Add building device tree blob(s) into image.

2010-12-22 Thread dirk . brandewie
From: Dirk Brandewie dirk.brande...@gmail.com

This patch adds linking device tree blob into vmlinux. DTB's are
added by adding the blob object name to list of objects to be linked
into the image.

Signed-off-by: Dirk Brandewie dirk.brande...@gmail.com
---
 arch/x86/platform/ce4100/Makefile |   10 ++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/arch/x86/platform/ce4100/Makefile 
b/arch/x86/platform/ce4100/Makefile
index 91fc929..e5f3b7b 100644
--- a/arch/x86/platform/ce4100/Makefile
+++ b/arch/x86/platform/ce4100/Makefile
@@ -1 +1,11 @@
 obj-$(CONFIG_X86_INTEL_CE) += ce4100.o
+clean-files := *dtb.S
+
+ifdef CONFIG_X86_OF
+###
+# device tree blob
+obj-$(CONFIG_X86_INTEL_CE) += ce4100.dtb.o
+
+$(obj)/%.dtb: $(src)/%.dts
+   $(call cmd,dtc)
+endif
-- 
1.7.2.3

___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev


Re: [PATCH 2/4] x86/of: Add building device tree blob(s) into image.

2010-12-21 Thread Michal Marek
On 8.12.2010 16:01, dirk.brande...@gmail.com wrote:
 From: Dirk Brandewie dirk.brande...@gmail.com
 
 This patch adds linking device tree blob into vmlinux. DTB's are
 added by adding the blob object name to list of objects to be linked
 into the image.
 
 Signed-off-by: Dirk Brandewie dirk.brande...@gmail.com
 ---
  arch/x86/platform/ce4100/Makefile |   10 ++
  1 files changed, 10 insertions(+), 0 deletions(-)
 
 diff --git a/arch/x86/platform/ce4100/Makefile 
 b/arch/x86/platform/ce4100/Makefile
 index 91fc929..e5f3b7b 100644
 --- a/arch/x86/platform/ce4100/Makefile
 +++ b/arch/x86/platform/ce4100/Makefile
 @@ -1 +1,11 @@
  obj-$(CONFIG_X86_INTEL_CE)   += ce4100.o
 +clean-files := *dtb.S
 +
 +ifdef CONFIG_X86_OF
 +###
 +# device tree blob
 +obj-$(CONFIG_X86_INTEL_CE) += ce4100.dtb.o
 +
 +$(obj)/%.dtb: $(src)/%.dts
 + $(call cmd,dtc)
 +endif

Hi,

CONFIG_X86_OF should be defined in some Kconfig file and there is no
ce4100.dts??

Michal
___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev


[PATCH 2/4] x86/of: Add building device tree blob(s) into image.

2010-12-08 Thread dirk . brandewie
From: Dirk Brandewie dirk.brande...@gmail.com

This patch adds linking device tree blob into vmlinux. DTB's are
added by adding the blob object name to list of objects to be linked
into the image.

Signed-off-by: Dirk Brandewie dirk.brande...@gmail.com
---
 arch/x86/platform/ce4100/Makefile |   10 ++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/arch/x86/platform/ce4100/Makefile 
b/arch/x86/platform/ce4100/Makefile
index 91fc929..e5f3b7b 100644
--- a/arch/x86/platform/ce4100/Makefile
+++ b/arch/x86/platform/ce4100/Makefile
@@ -1 +1,11 @@
 obj-$(CONFIG_X86_INTEL_CE) += ce4100.o
+clean-files := *dtb.S
+
+ifdef CONFIG_X86_OF
+###
+# device tree blob
+obj-$(CONFIG_X86_INTEL_CE) += ce4100.dtb.o
+
+$(obj)/%.dtb: $(src)/%.dts
+   $(call cmd,dtc)
+endif
-- 
1.7.2.3

___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev


[PATCH 2/4] x86/of: Add building device tree blob(s) into image.

2010-12-06 Thread dirk . brandewie
From: Dirk Brandewie dirk.brande...@gmail.com

This patch adds linking device tree blob into vmlinux. DTB's are
added by adding the blob object name to list of objects to be linked
into the image.

Signed-off-by: Dirk Brandewie dirk.brande...@gmail.com
---
 arch/x86/platform/ce4100/Makefile |   10 ++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/arch/x86/platform/ce4100/Makefile 
b/arch/x86/platform/ce4100/Makefile
index 91fc929..3b49187 100644
--- a/arch/x86/platform/ce4100/Makefile
+++ b/arch/x86/platform/ce4100/Makefile
@@ -1 +1,11 @@
 obj-$(CONFIG_X86_INTEL_CE) += ce4100.o
+clean-files := *dtb.S
+
+ifdef CONFIG_X86_OF
+###
+# device tree blob
+obj-$(CONFIG_X86_INTEL_CE) += ce4100.dtb.o
+
+$(obj)/%.dtb: $(src)/%.dts
+   $(call if_changed,dtc)
+endif
-- 
1.7.2.3

___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev


[PATCH 2/4] x86/of: Add building device tree blob(s) into image.

2010-12-01 Thread dirk . brandewie
From: Dirk Brandewie dirk.brande...@gmail.com

This patch adds linking device tree blob into vmlinux. DTB's are
added by adding the blob object name to list of objects to be linked
into the image.

Signed-off-by: Dirk Brandewie dirk.brande...@gmail.com
---
 arch/x86/platform/ce4100/Makefile |   10 ++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/arch/x86/platform/ce4100/Makefile 
b/arch/x86/platform/ce4100/Makefile
index 91fc929..3b49187 100644
--- a/arch/x86/platform/ce4100/Makefile
+++ b/arch/x86/platform/ce4100/Makefile
@@ -1 +1,11 @@
 obj-$(CONFIG_X86_INTEL_CE) += ce4100.o
+clean-files := *dtb.S
+
+ifdef CONFIG_X86_OF
+###
+# device tree blob
+obj-$(CONFIG_X86_INTEL_CE) += ce4100.dtb.o
+
+$(obj)/%.dtb: $(src)/%.dts
+   $(call if_changed,dtc)
+endif
-- 
1.7.2.3

___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev