Update 2023-11-23 13:23 OpenBSD/amd64-x13

This commit is contained in:
c0dev0id
2023-11-23 13:23:56 +01:00
parent d4c83cd571
commit 51276df8be
19 changed files with 216 additions and 120 deletions

View File

@@ -1,6 +1,11 @@
#!/bin/ksh -xe
umask 022
ARGS="$@"
trap abort 1 2 3 6 9 11
abort() { echo "Abort with >$0 $ARGS< on $(date)" >> /tmp/obsdmake.log; }
JOBS="${JOBS:=$(sysctl -n hw.ncpuonline)}"
export GLOBAL_AUTOCONF_CACHE="/var/ccache/config.cache"
@@ -24,6 +29,8 @@ if [ -z "$1" ]; then
exit 2
fi
echo "Start with >$0 $ARGS< on $(date)" >> /tmp/obsdmake.log
doas mkdir -p /usr/obj /usr/xobj
doas chown build /usr/obj /usr/xobj
@@ -124,4 +131,6 @@ case "$1" in
release) mkrelease; ;;
all) mkkernel; mkbase; mkxenocara; ;;
esac
echo "Finished with >$0 $ARGS< on $(date)" >> /tmp/obsdmake.log
sync