diff options
Diffstat (limited to '.local/bin/update_bsd.sh')
-rwxr-xr-x | .local/bin/update_bsd.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.local/bin/update_bsd.sh b/.local/bin/update_bsd.sh index 6d879a8..7cbb608 100755 --- a/.local/bin/update_bsd.sh +++ b/.local/bin/update_bsd.sh @@ -21,8 +21,8 @@ cvs update -dP -r netbsd-10 ; cd /usr/src ; cvs update -dP -r netbsd-10 ; -# Not sure if this will build X as well -#/usr/src/build.sh -j $(sysctl -n hw.ncpu) -c clang -O /usr/obj/ -T /usr/tools/ -x -X /usr/xsrc -U -u distribution kernel=GENERIC ; +# Build with Xsrc +/usr/src/build.sh -j $(sysctl -n hw.ncpu) -c clang -O /usr/obj/ -T /usr/tools/ -x -X /usr/xsrc -U -u -P distribution kernel=GENERIC ; -cd /usr/src ; -/usr/src/build.sh -j $(sysctl -n hw.ncpu) -c clang -O /usr/obj/ -T /usr/tools/ -U -u distribution kernel=GENERIC ; +# Build without X +#/usr/src/build.sh -j $(sysctl -n hw.ncpu) -c clang -O /usr/obj/ -T /usr/tools/ -U -u -P distribution kernel=GENERIC ; |