diff options
Diffstat (limited to 'arch/ia64/vmlinux.lds.S')
-rw-r--r-- | arch/ia64/vmlinux.lds.S | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/arch/ia64/vmlinux.lds.S b/arch/ia64/vmlinux.lds.S index b095baeb9..08e7f9f9a 100644 --- a/arch/ia64/vmlinux.lds.S +++ b/arch/ia64/vmlinux.lds.S @@ -8,7 +8,7 @@ OUTPUT_ARCH(ia64) ENTRY(_start) SECTIONS { - v = PAGE_OFFSET; /* this symbol is here to make debugging with kdb easier... */ + v = PAGE_OFFSET; /* this symbol is here to make debugging easier... */ . = KERNEL_START; @@ -39,21 +39,6 @@ SECTIONS { *(__ex_table) } __stop___ex_table = .; -#if defined(CONFIG_KDB) - /* Kernel symbols and strings for kdb */ -# define KDB_MEAN_SYMBOL_SIZE 48 -# define KDB_SPACE (CONFIG_KDB_STBSIZE * KDB_MEAN_SYMBOL_SIZE) - . = ALIGN(8); - _skdb = .; - .kdb : AT(ADDR(.kdb) - PAGE_OFFSET) - { - *(kdbsymtab) - *(kdbstrings) - } - _ekdb = .; - . = _skdb + KDB_SPACE; -#endif - /* Kernel symbol names for modules: */ .kstrtab : AT(ADDR(.kstrtab) - PAGE_OFFSET) { *(.kstrtab) } |