diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-06-03 22:11:28 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-06-03 22:11:28 +0000 |
commit | 0833bfa9d98cf32dd569b8bb85a19acfb2d29e12 (patch) | |
tree | 4eabe761cb264373daa3b2c7099c60e52b60ef85 /sys/conf | |
parent | 236a64b42bb4789942aa2926b8f2f0417636bc59 (diff) |
".section .bss" is portable to more platforms than plain ".bss"
Diffstat (limited to 'sys/conf')
-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 1e644be41b3..87f08a57f5e 100644 --- a/sys/conf/makegap.sh +++ b/sys/conf/makegap.sh @@ -24,7 +24,7 @@ _C_LABEL(endboot): .data .space $RANDOM % PAGE_SIZE, $PADBYTE - .bss + .section .bss .space $RANDOM % PAGE_SIZE, $PADBYTE .section .rodata |