secupdate: apply FreeBSD binary patches and recompile custom kernel for the lazy.

This commit is contained in:
n 2015-01-28 23:04:04 +01:00
부모 414730db3c
커밋 26e0e93286
1개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제

12
secupdate Executable file
파일 보기

@ -0,0 +1,12 @@
#!/bin/sh
#
# secupdate: apply FreeBSD binary patches
# and recompile custom kernel for the lazy.
freebsd-update fetch && \
freebsd-update install && \
cd /usr/src && \
make buildkernel KERNCONF=TK && \
make installkernel KERNCONF=TK && \
echo && \
echo "update done. please reboot."