All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ralf Baechle <ralf@linux-mips.org>
To: Wu Zhangjin <wuzhangjin@gmail.com>
Cc: linux-mips@linux-mips.org
Subject: Re: [PATCH -queue 2/2] MIPS: Cleanup the debugging of compressed kernel support
Date: Tue, 26 Jan 2010 11:51:55 +0100	[thread overview]
Message-ID: <20100126105155.GC30098@linux-mips.org> (raw)
In-Reply-To: <cbf30435132e35087c6c6b8ca172c7d9cb0cbc37.1264496568.git.wuzhangjin@gmail.com>

On Tue, Jan 26, 2010 at 05:04:03PM +0800, Wu Zhangjin wrote:

> This patch adds a new DEBUG_ZBOOT option to allow the developers to
> debug the compressed kernel support for a new board.
> 
> Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
> ---
>  arch/mips/Kconfig.debug            |   18 ++++++++++++++++++
>  arch/mips/boot/compressed/Makefile |    2 ++
>  2 files changed, 20 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/mips/Kconfig.debug b/arch/mips/Kconfig.debug
> index d2b88a0..b3e20f4 100644
> --- a/arch/mips/Kconfig.debug
> +++ b/arch/mips/Kconfig.debug
> @@ -102,4 +102,22 @@ config RUNTIME_DEBUG
>  	  arch/mips/include/asm/debug.h for debugging macros.
>  	  If unsure, say N.
>  
> +config DEBUG_ZBOOT
> +	bool "Enable compressed kernel support debugging"
> +	depends on SYS_SUPPORTS_ZBOOT_UART16550

This should probably depend on DEBUG_KERNEL also.

> +	help
> +	  If you want to add compressed kernel support to a new board, and the
> +	  board supports uart16550 compatible serial port, please select
> +	  SYS_SUPPORTS_ZBOOT_UART16550 for your board and enable this option to
> +	  debug it.
> +
> +	  If your board doesn't support uart16550 compatible serial port, you
> +	  can try to select SYS_SUPPORTS_ZBOOT and use the other methods to
> +	  debug it. for example, add a new serial port support just as
> +	  arch/mips/boot/compressed/uart-16550.c does.
> +
> +	  After the compressed kernel support works, please disable this option
> +	  to reduce the kernel image size and speed up the booting procedure a
> +	  little.
> +
>  endmenu
> diff --git a/arch/mips/boot/compressed/Makefile b/arch/mips/boot/compressed/Makefile
> index 91a57a6..68e5db8 100644
> --- 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 CONFIG_DEBUG_ZBOOT
>  obj-$(CONFIG_SYS_SUPPORTS_ZBOOT_UART16550) += $(obj)/uart-16550.o
> +endif

DEBUG_ZBOOT already depends on SYS_SUPPORTS_ZBOOT_UART16550 so this can be
simplified into just obj-$(CONFIG_DEBUG_ZBOOT) and no ifdef.

  Ralf

  reply	other threads:[~2010-01-26 10:51 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-01-26  9:04 [PATCH -queue 1/2] MIPS: Cleanup the Makefile of compressed kernel support Wu Zhangjin
2010-01-26  9:04 ` [PATCH -queue 2/2] MIPS: Cleanup the debugging " Wu Zhangjin
2010-01-26 10:51   ` Ralf Baechle [this message]
2010-01-26 13:46     ` Wu Zhangjin
2010-01-26 10:56 ` [PATCH -queue 1/2] MIPS: Cleanup the Makefile " Ralf Baechle

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20100126105155.GC30098@linux-mips.org \
    --to=ralf@linux-mips.org \
    --cc=linux-mips@linux-mips.org \
    --cc=wuzhangjin@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.