Skip to content

Commit

Permalink
[clean] linker script
Browse files Browse the repository at this point in the history
スペース消しただけ
  • Loading branch information
PG-MANA committed Mar 13, 2019
1 parent 13b77bc commit 434011b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions config/x86_64/linkerscript.ld
@@ -1,11 +1,11 @@
OUTPUT_FORMAT(elf64-x86-64)

SECTIONS {

ENTRY(boot_entry) /*起動処理のコード*/
. = 1M;
LD_KERNEL_START = .;

.boot_entry BLOCK(0x1000): ALIGN(0x1000) { /*BLOCKとALIGNは同意義*/
KEEP(*(.grub_header))/*使われてないとリンクされなくなるので*/
}
Expand All @@ -32,4 +32,3 @@ SECTIONS {
*(.data.rel.ro*)
}
}

0 comments on commit 434011b

Please sign in to comment.