From a9b24ebbe86e2d3e98631454922ec08f4119c64b Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 16 Jan 2020 09:46:09 +0100 Subject: [PATCH] Kernel: Reindent linker script --- Kernel/linker.ld | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/Kernel/linker.ld b/Kernel/linker.ld index e71298c23e..12b0756823 100644 --- a/Kernel/linker.ld +++ b/Kernel/linker.ld @@ -2,40 +2,40 @@ ENTRY(start) SECTIONS { - . = 0x100000; + . = 0x100000; - .text BLOCK(4K) : ALIGN(4K) - { + .text BLOCK(4K) : ALIGN(4K) + { Arch/i386/Boot/boot.ao - *(.multiboot) - *(.page_tables) + *(.multiboot) + *(.page_tables) start_of_kernel_text = .; - *(.text) - *(.text.startup) + *(.text) + *(.text.startup) end_of_kernel_text = .; - } + } - .rodata BLOCK(4K) : ALIGN(4K) - { - start_ctors = .; - *(.ctors) - end_ctors = .; + .rodata BLOCK(4K) : ALIGN(4K) + { + start_ctors = .; + *(.ctors) + end_ctors = .; - *(.rodata) - } + *(.rodata) + } - .data BLOCK(4K) : ALIGN(4K) - { + .data BLOCK(4K) : ALIGN(4K) + { start_of_kernel_data = .; - *(.data) + *(.data) end_of_kernel_data = .; - } + } - .bss BLOCK(4K) : ALIGN(4K) - { + .bss BLOCK(4K) : ALIGN(4K) + { start_of_kernel_bss = .; - *(COMMON) - *(.bss) + *(COMMON) + *(.bss) end_of_kernel_bss = .; - } + } }