diff options
-rw-r--r-- | sys/conf/makegap.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/conf/makegap.sh b/sys/conf/makegap.sh index d57cbc07002..a640e717087 100644 --- a/sys/conf/makegap.sh +++ b/sys/conf/makegap.sh @@ -23,7 +23,7 @@ PHDRS { SECTIONS { .text : ALIGN($PAGE_SIZE) { - LONG($PAD); + LONG($PAD) . += $RANDOM1; . = ALIGN($PAGE_SIZE); endboot = .; @@ -35,14 +35,14 @@ SECTIONS { } :text =$PAD .rodata : { - LONG($PAD); + LONG($PAD) . += $RANDOM3; . = ALIGN(16); *(.rodata .rodata.*) } :rodata =$PAD .data : { - LONG($PAD); + LONG($PAD) . = . + $RANDOM4; /* fragment of page */ . = ALIGN(16); *(.data .data.*) |