make the memory filesystem larger, and add an example

on how to import files from the host
This commit is contained in:
Luigi Rizzo 2009-12-28 01:25:05 +00:00
parent 996e65afcd
commit 7ba6829897
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=201076
2 changed files with 23 additions and 3 deletions

View File

@ -6,8 +6,8 @@
#
# Line starting with #PicoBSD contains PicoBSD build parameters
#marker def_sz init MFS_inodes floppy_inodes
#PicoBSD 8000 init 8192 32768
options MD_ROOT_SIZE=8000 # same as def_sz
#PicoBSD 18000 init 8192 32768
options MD_ROOT_SIZE=18000 # same as def_sz
hints "PICOBSD.hints"

View File

@ -3,4 +3,24 @@
# it should only contain variable definitions -- it is sourced
# by the shell much like rc.conf* files
fd_size="4096"
fd_size="8192"
# To copy individual files you can use the function do_copyfiles_user
# as below (find_progs locates the programs and their libraries,
# then you manually copy them.
#copy_files="
#"
do_copyfiles_user() {
local dst=$1 # the destination root
log "--- put the libraries in /usr/lib to avoid conflicts"
mkdir -p ${dst}/usr/lib
log "-- import dropbear from its build directory --"
find_progs -L / -P /usr/ports/security/dropbear/work/dropbear-0.52 \
dbclient dropbear
cp -p ${u_progs} ${dst}/bin
cp -p ${u_libs} ${dst}/usr/lib
log "--- also import ssh, scp and sshd ---"
find_progs -L / /usr/bin/ssh /usr/bin/scp /usr/sbin/sshd
cp -p ${u_progs} ${dst}/bin
cp -p ${u_libs} ${dst}/usr/lib
}