diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-06-04 13:55:05 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-06-04 13:55:05 +0000 |
commit | a862b1eefa127e58eabac11d5fbd098343309144 (patch) | |
tree | 713aaf03fc48de75780d52a03c8d92523f749ebe /sys/conf/makegap.sh | |
parent | 30b0aab1cf6baf82b733ebb25e6ee8a8397b7ecb (diff) |
Don't need to provide a padbyte value for .bss, it will always be 0
pointed out by kettenis
Diffstat (limited to 'sys/conf/makegap.sh')
-rw-r--r-- | sys/conf/makegap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/conf/makegap.sh b/sys/conf/makegap.sh index 87f08a57f5e..9a31fd44e08 100644 --- a/sys/conf/makegap.sh +++ b/sys/conf/makegap.sh @@ -25,7 +25,7 @@ _C_LABEL(endboot): .space $RANDOM % PAGE_SIZE, $PADBYTE .section .bss - .space $RANDOM % PAGE_SIZE, $PADBYTE + .space $RANDOM % PAGE_SIZE .section .rodata .space $RANDOM % PAGE_SIZE, $PADBYTE |