Add a manual implementation of building a release.
This commit is contained in:
parent
44d3cc61f5
commit
6be5ad6b3d
@ -5,11 +5,18 @@ IFS=$'\n\t'
|
|||||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
|
|
||||||
function main {
|
function main {
|
||||||
build_release
|
build_release_script
|
||||||
}
|
}
|
||||||
|
|
||||||
function build_release {
|
function build_release_script {
|
||||||
/usr/src/release/release.sh -c /opt/freebsd_update_server/release.conf
|
/usr/src/release/release.sh -c /opt/freebsd_update_server/release.conf
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function build_release_manually {
|
||||||
|
make -C /usr/src buildworld buildkernel
|
||||||
|
make -C /usr/src/release obj
|
||||||
|
make -C /usr/src/release release
|
||||||
|
make -C /usr/src/release install DESTDIR=/where/to/put/the/images
|
||||||
|
}
|
||||||
|
|
||||||
main "${@}"
|
main "${@}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user