system/efi/riscv64: Move _edata to include rela sections

Change-Id: Ibb97e7b36fce507c129eff15c04b765a5870a9d7
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3663
Reviewed-by: Fredrik Holmqvist <fredrik.holmqvist@gmail.com>
This commit is contained in:
Alexander von Gluck IV 2021-01-22 16:12:18 -06:00 committed by Alex von Gluck IV
parent 6cd49df637
commit f96e84d85f

View File

@ -52,12 +52,13 @@ SECTIONS
*(COMMON)
. = ALIGN(16);
_bss_end = .;
_edata = .;
}
.rela.dyn : { *(.rela.dyn) }
.rela.plt : { *(.rela.plt) }
.rela.got : { *(.rela.got) }
.rela.data : { *(.rela.data) *(.rela.data*) }
_edata = .;
_data_size = . - _etext;
. = ALIGN(4096);