diff options
author | Wu Zhangjin <wuzhangjin@gmail.com> | 2010-01-31 07:39:40 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-02-27 06:53:24 -0500 |
commit | f86a69b15f60965a224e7e2516ad41070692cc19 (patch) | |
tree | 9518ffe0e5128114be5651589d94f184a349d100 /arch/mips | |
parent | b66bb6090d9aa36931911e34d3f069932934b6fe (diff) |
MIPS: Make the debugging of compressed kernel configurable
This patch adds a new DEBUG_ZBOOT option to allow the users to enable it
to debug the compressed kernel support for a new board and this optoin
should be disabled to reduce the kernel image size and speed up the
kernel booting procedure when the compressed kernel support is stable.
Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
To: Ralf Baechle <ralf@linux-mips.org>
Cc: Manuel Lauss <manuel.lauss@googlemail.com>
Cc: linux-mips@linux-mips.org
Patchwork: http://patchwork.linux-mips.org/patch/918/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/Kconfig.debug | 19 | ||||
-rw-r--r-- | arch/mips/boot/compressed/Makefile | 2 |
2 files changed, 21 insertions, 0 deletions
diff --git a/arch/mips/Kconfig.debug b/arch/mips/Kconfig.debug index d2b88a0be519..32a010d5edb9 100644 --- a/arch/mips/Kconfig.debug +++ b/arch/mips/Kconfig.debug | |||
@@ -102,4 +102,23 @@ config RUNTIME_DEBUG | |||
102 | arch/mips/include/asm/debug.h for debugging macros. | 102 | arch/mips/include/asm/debug.h for debugging macros. |
103 | If unsure, say N. | 103 | If unsure, say N. |
104 | 104 | ||
105 | config DEBUG_ZBOOT | ||
106 | bool "Enable compressed kernel support debugging" | ||
107 | depends on DEBUG_KERNEL && SYS_SUPPORTS_ZBOOT | ||
108 | default n | ||
109 | help | ||
110 | If you want to add compressed kernel support to a new board, and the | ||
111 | board supports uart16550 compatible serial port, please select | ||
112 | SYS_SUPPORTS_ZBOOT_UART16550 for your board and enable this option to | ||
113 | debug it. | ||
114 | |||
115 | If your board doesn't support uart16550 compatible serial port, you | ||
116 | can try to select SYS_SUPPORTS_ZBOOT and use the other methods to | ||
117 | debug it. for example, add a new serial port support just as | ||
118 | arch/mips/boot/compressed/uart-16550.c does. | ||
119 | |||
120 | After the compressed kernel support works, please disable this option | ||
121 | to reduce the kernel image size and speed up the booting procedure a | ||
122 | little. | ||
123 | |||
105 | endmenu | 124 | endmenu |
diff --git a/arch/mips/boot/compressed/Makefile b/arch/mips/boot/compressed/Makefile index 76d69303b833..790ddd397620 100644 --- a/arch/mips/boot/compressed/Makefile +++ b/arch/mips/boot/compressed/Makefile | |||
@@ -35,8 +35,10 @@ KBUILD_AFLAGS := $(LINUXINCLUDE) $(KBUILD_AFLAGS) -D__ASSEMBLY__ \ | |||
35 | 35 | ||
36 | obj-y := $(obj)/head.o $(obj)/decompress.o $(obj)/dbg.o | 36 | obj-y := $(obj)/head.o $(obj)/decompress.o $(obj)/dbg.o |
37 | 37 | ||
38 | ifdef CONFIG_DEBUG_ZBOOT | ||
38 | obj-$(CONFIG_SYS_SUPPORTS_ZBOOT_UART16550) += $(obj)/uart-16550.o | 39 | obj-$(CONFIG_SYS_SUPPORTS_ZBOOT_UART16550) += $(obj)/uart-16550.o |
39 | obj-$(CONFIG_MACH_ALCHEMY) += $(obj)/uart-alchemy.o | 40 | obj-$(CONFIG_MACH_ALCHEMY) += $(obj)/uart-alchemy.o |
41 | endif | ||
40 | 42 | ||
41 | OBJCOPYFLAGS_vmlinux.bin := $(OBJCOPYFLAGS) -O binary -R .comment -S | 43 | OBJCOPYFLAGS_vmlinux.bin := $(OBJCOPYFLAGS) -O binary -R .comment -S |
42 | $(obj)/vmlinux.bin: $(KBUILD_IMAGE) | 44 | $(obj)/vmlinux.bin: $(KBUILD_IMAGE) |