CVSROOT: /cvs Module name: src Changes by: patr...@cvs.openbsd.org 2018/02/10 00:02:21
Modified files: sys/arch/arm/conf: kern.ldscript Log message: Supplying entropy from etext has created a regression on arm where we get an alignment fault while copying the data. Turns out that since we have .rodata in the text segment, it's very easily possible that etext remains unaligned. Work around this by word-aligning etext. The next step is to split .rodata out of the text segment. ok deraadt@