svn commit: r201076 - head/release/picobsd/qemu

Luigi Rizzo luigi at FreeBSD.org
Mon Dec 28 01:25:05 UTC 2009


Author: luigi
Date: Mon Dec 28 01:25:05 2009
New Revision: 201076
URL: http://svn.freebsd.org/changeset/base/201076

Log:
  make the memory filesystem larger, and add an example
  on how to import files from the host

Modified:
  head/release/picobsd/qemu/PICOBSD
  head/release/picobsd/qemu/config

Modified: head/release/picobsd/qemu/PICOBSD
==============================================================================
--- head/release/picobsd/qemu/PICOBSD	Mon Dec 28 01:17:24 2009	(r201075)
+++ head/release/picobsd/qemu/PICOBSD	Mon Dec 28 01:25:05 2009	(r201076)
@@ -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"
 

Modified: head/release/picobsd/qemu/config
==============================================================================
--- head/release/picobsd/qemu/config	Mon Dec 28 01:17:24 2009	(r201075)
+++ head/release/picobsd/qemu/config	Mon Dec 28 01:25:05 2009	(r201076)
@@ -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
+}


More information about the svn-src-head mailing list