Re: Default flats for running dtc from kernel build

2008-06-15 Thread Jerry Van Baren
Peter Czanik wrote: Hello, Kumar Gala írta: diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index c40fb82..52db85a 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile @@ -29,6 +29,8 @@ ifdef CONFIG_DEBUG_INFO BOOTCFLAGS += -g endif +DTS_FLAGS

Re: Default flats for running dtc from kernel build

2008-06-09 Thread Peter Czanik
Hello, Kumar Gala írta: diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index c40fb82..52db85a 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile @@ -29,6 +29,8 @@ ifdef CONFIG_DEBUG_INFO BOOTCFLAGS += -g endif +DTS_FLAGS ?= -R4 -S 0x3000 +

Re: Default flats for running dtc from kernel build

2008-06-06 Thread Segher Boessenkool
DTS_FLAGS ?= -P 0x1000 1k seems like more than enough default padding. Yes. So why specify 4kB? /me hides Segher ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

Re: Default flats for running dtc from kernel build

2008-06-06 Thread Jon Loeliger
On Fri, 2008-06-06 at 10:42 -0500, Kumar Gala wrote: > So maybe: > > DTS_FLAGS ?= -P 0x1000 Lowercase "p". > 1k seems like more than enough default padding. I would think so. > - k jdl ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org htt

Re: Default flats for running dtc from kernel build

2008-06-06 Thread Grant Likely
On Fri, Jun 6, 2008 at 9:42 AM, Kumar Gala <[EMAIL PROTECTED]> wrote: > > Yeah, I think the -R isn't need either. > > So maybe: > > DTS_FLAGS ?= -P 0x1000 > > 1k seems like more than enough default padding. Good by me. g. -- Grant Likely, B.Sc., P.Eng. Secret Lab Technologies Ltd. ___

Re: Default flats for running dtc from kernel build

2008-06-06 Thread Kumar Gala
On Jun 6, 2008, at 10:31 AM, Jon Loeliger wrote: On Fri, 2008-06-06 at 09:51 -0500, Kumar Gala wrote: I will. But wouldn't it make sense to allow at least for some level of compatibility with older versions of U-Boot? Adding these options as default would probably not hurt? Agreed.

Re: Default flats for running dtc from kernel build

2008-06-06 Thread Jon Loeliger
On Fri, 2008-06-06 at 09:51 -0500, Kumar Gala wrote: > > > > I will. But wouldn't it make sense to allow at least for some level > > of compatibility with older versions of U-Boot? Adding these options > > as default would probably not hurt? > > Agreed. I didn't realize we could actually do t

Default flats for running dtc from kernel build

2008-06-06 Thread Kumar Gala
On Jun 6, 2008, at 9:33 AM, Wolfgang Denk wrote: In message <[EMAIL PROTECTED]> you wrote: As I see it, I have to define DTS_FLAGS manually $ export DTS_FLAGS="-R4 -S0x3000" $ make ARCH=powerpc tqm8548.dtb to get a working blob. Is that the intended behavior? this is normal. Andy Flemi