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

这个提交包含在:
n 2015-01-28 23:04:04 +01:00
父节点 414730db3c
当前提交 26e0e93286
共有 1 个文件被更改,包括 12 次插入0 次删除

12
secupdate 可执行文件
查看文件

@ -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."