]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - release/picobsd/qemu/config
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / release / picobsd / qemu / config
1 # configuration for picobsd build script.
2 # $FreeBSD$
3 # it should only contain variable definitions -- it is sourced
4 # by the shell much like rc.conf* files
5
6 fd_size="8192"
7
8 # To copy individual files you can use the function  do_copyfiles_user
9 # as below (find_progs locates the programs and their libraries,
10 # then you manually copy them.
11 #copy_files="
12 #"
13 do_copyfiles_user() {
14         local dst=$1 # the destination root
15         log "--- put the libraries in /usr/lib to avoid conflicts"
16         mkdir -p ${dst}/usr/lib
17         log "-- import dropbear from its build directory --"
18         find_progs -L / -P /usr/ports/security/dropbear/work/dropbear-0.52 \
19                 dbclient dropbear
20         cp -p ${u_progs} ${dst}/bin
21         cp -p ${u_libs} ${dst}/usr/lib
22         log "--- also import ssh, scp and sshd ---"
23         find_progs -L / /usr/bin/ssh /usr/bin/scp /usr/sbin/sshd
24         cp -p ${u_progs} ${dst}/bin
25         cp -p ${u_libs} ${dst}/usr/lib
26 }