On Tue, 2010-01-26 at 19:07 +0100, Manuel Lauss wrote: > Hi! > > On Tue, Jan 26, 2010 at 6:01 PM, Wu Zhangjin <wuzhangjin@xxxxxxxxx> wrote: > > From: Wu Zhangjin <wuzhangjin@xxxxxxxxx> > > > > --- a/arch/mips/boot/compressed/Makefile > > +++ b/arch/mips/boot/compressed/Makefile > > @@ -32,7 +32,9 @@ KBUILD_AFLAGS := $(LINUXINCLUDE) $(KBUILD_AFLAGS) -D__ASSEMBLY__ \ > > > > obj-y := $(obj)/head.o $(obj)/decompress.o $(obj)/dbg.o > > > > +ifdef DEBUG_ZBOOT > > The above doesn't work in my testing, but this does: > ifeq ($(CONFIG_DEBUG_ZBOOT),y) oh, my god, I have forgotten the prefix CONFIG_, perhaps Ralf will help to fix it ;) it should be: ifdef CONFIG_DEBUG_ZBOOT ... endif of course, your ifeq version also works ;) Thanks & Regards! Wu Zhangjin