Revision: | 1129 |
Committed: | 2008-11-30T13:51:09-08:00 (16 years, 6 months ago) by douglas |
Content type: | text/x-sh |
File size: | 483 byte(s) |
Log Message: | Hopefully that should do it for PXE FreeBSD. |
# | Content |
---|---|
1 | #!/bin/bash |
2 | # PXE Boot FreeBSD |
3 | # |
4 | # Douglas Thrift |
5 | # |
6 | # $Id$ |
7 | |
8 | version='7.0-RELEASE' |
9 | |
10 | for architecture in amd64 i386 soekris; do |
11 | directory $architecture |
12 | get "ftp://ftp.ucsb.edu/pub/FreeBSD/ISO-IMAGES-${architecture/soekris/i386}/${version%-*}/$version-${architecture/soekris/i386}-bootonly.iso" "http://computers.douglasthrift.net/download/tftpboot-$version-$architecture.tar.bz2" |
13 | chmod go+rx . |
14 | |
15 | [[ $architecture = soekris ]] && echo 'console="comconsole"' >> boot/loader.conf |
16 | done |
Name | Value |
---|---|
svn:keywords | Id |
svn:mime-type | text/x-sh |