Changes between Version 131 and Version 132 of NanoBSD


Ignore:
Timestamp:
Sep 21, 2010, 2:54:15 PM (14 years ago)
Author:
rick
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NanoBSD

    v131 v132  
    4848 Edit the shell configuration file .cshrc:
    4949 {{{
    50  vi /root/.cshrc
    51  }}}
    52  check whether ftp is set to passive mode, to avoid potential firewall issues:
    53  {{{
     50 $ cat <<EOF >> $HOME/.cshrc
     51 # check whether ftp is set to passive mode, to avoid potential firewall issues:
    5452 setenv FTP_PASSIVE_MODE YES
    55  }}}
    56  set a default password for the images that you will produce
    57  {{{
     53
     54 # set a default password for the images that you will produce
    5855 setenv CFG_ROOT_PASSWORD [default password]
    59  }}}
    60  and define the svn download directory:
    61  {{{
     56 
     57 # define the svn download directory:
    6258 setenv R /root/nanobsd
    63  }}}
     59 EOF
     60 }}}
     61 Next load your file (or login again):
     62 $ source $HOME/.cshrc
    6463
    6564 A.5. install subversion .
     
    105104 For use of a Davicom DM9601 USB network controler you have to patch usbdevs and the if_udav driver:
    106105 {{{
    107  cd /usr/src/sys/dev/usb/
    108  patch < /root/nanobsd/misc/patches/usbdevs.patch
    109  cd /usr/src/sys/dev/usb/net/
    110  patch < /root/nanobsd/misc/patches/if_udav.c.patch
     106 $ patch -d /usr/src/sys/dev/usb -i /root/nanobsd/misc/patches/usbdevs.patch
     107 $ patch -d /usr/src/sys/dev/usb/net -i /root/nanobsd/misc/patches/if_udav.c.patch
    111108 }}}
    112109