Changes between Version 59 and Version 60 of TinyBSD

Show
Ignore:
Timestamp:
10/09/08 22:53:41 (2 years ago)
Author:
mvn (IP: 192.168.178.34)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TinyBSD

    v59 v60  
    115115{{{ 
    116116# cd /usr/src/tools/tools/tools/tinybsd 
     117}}} 
     118for configuration options: 
     119{{{ 
     120#  ls conf/ 
     121apachecon       default         minimal         wireless 
     122bridge          firewall        vpn             wrap 
     123}}} 
     124to see the configuration files 
     125# ls conf/minimal/ 
     126TINYBSD                 tinybsd.basefiles 
     127etc                     tinybsd.ports 
     128}}} 
     129 - TINYBSD is the kernel config file  [http://www.freebsd.org/doc/en/books/handbook/kernelconfig.html handbook] 
     130 - etc is a directory where you can put additional config files, they will be copied to the image 
     131 - tinybsd.basefiles files from base 
     132 - tinybsd.ports here you can configure packages to be added from ports 
     133 
     134Normally I copy one of these directories to start me own setup. 
     135{{{ 
     136# cp -rv conf/wrap conf/project 
     137conf/wrap -> conf/project 
     138conf/wrap/etc -> conf/project/etc 
     139conf/wrap/etc/fstab -> conf/project/etc/fstab 
     140conf/wrap/etc/rc.conf -> conf/project/etc/rc.conf 
     141conf/wrap/etc/ttys -> conf/project/etc/ttys 
     142conf/wrap/TINYBSD -> conf/project/TINYBSD 
     143conf/wrap/tinybsd.basefiles -> conf/project/tinybsd.basefiles 
     144conf/wrap/tinybsd.ports -> conf/project/tinybsd.ports 
     145}}} 
     146 
     147and add the files to svn (or something simular) 
     148{{{ 
     149cd conf/project/ 
     150svn ci http://martenvijn.nl/svn/project . 
     151svn add * 
     152svn ci  
     153}}} 
     154 
     155Then make your necessary changes (and commit these every now and then)  
     156 
     157To build an image 
     158 
     159{{{ 
    117160# ./tinybsd 
    118161}}} 
     162 
     163 
    119164= 5. Maintenance on the image = 
    120165