diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2021-08-31 00:13:40 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2021-08-31 00:13:40 +0300 |
| commit | 1ab464d959b9ee3d3bb6758ac0d9d33fc6c77e46 (patch) | |
| tree | 8d6832f0eadacce1613778bcecfcdaa2391aba79 /arch/riscv/conf | |
| parent | 2939b749b1169a0c01c19698a3f0026034346ebd (diff) | |
| download | kmi-1ab464d959b9ee3d3bb6758ac0d9d33fc6c77e46.tar.gz kmi-1ab464d959b9ee3d3bb6758ac0d9d33fc6c77e46.zip | |
Improved linkind process, added padding generator
Diffstat (limited to 'arch/riscv/conf')
| -rw-r--r-- | arch/riscv/conf/init-link.S | 3 | ||||
| -rw-r--r-- | arch/riscv/conf/kernel-link.S | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/arch/riscv/conf/init-link.S b/arch/riscv/conf/init-link.S index f1ceadc..2bb904b 100644 --- a/arch/riscv/conf/init-link.S +++ b/arch/riscv/conf/init-link.S @@ -7,7 +7,6 @@ SECTIONS { . = ABSOLUTE(PM_KERN); .text ALIGN(4K) : AT(0) { *(.init.start) - *(.text); - . = ALIGN(4K); + *(.text*); } } diff --git a/arch/riscv/conf/kernel-link.S b/arch/riscv/conf/kernel-link.S index ebcc877..4592086 100644 --- a/arch/riscv/conf/kernel-link.S +++ b/arch/riscv/conf/kernel-link.S @@ -7,7 +7,6 @@ SECTIONS { . = ABSOLUTE(VM_KERN); .text ALIGN(4K) : AT(0) { *(.kernel.start); - *(.text); - . = ALIGN(4K); + *(.text*); } } |
