diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-06-05 13:52:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-06-05 13:52:33 +0000 |
commit | af0ad0fae90e1cb5e0f19e17acaa1bc531e5e73a (patch) | |
tree | 6115f84b1906caae37d2698ebbec7c375cd2ffd7 | |
parent | 2dfa61178f13fdb1920a28907e3ecc76bbf87920 (diff) |
Avoid use of _C_LABEL, since it is not portable to all our architectures.
And anyways, everything is ELF now.
-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 9a31fd44e08..3a9db58337b 100644 --- a/sys/conf/makegap.sh +++ b/sys/conf/makegap.sh @@ -12,7 +12,7 @@ cat << __EOF__ .balign PAGE_SIZE, $PADBYTE .globl endboot -_C_LABEL(endboot): +endboot: .space PAGE_SIZE, $PADBYTE .space $RANDOM % PAGE_SIZE, $PADBYTE .balign 16, $PADBYTE |