ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/FreeBSDAdmin/PXEBoot/freebsd
Revision: 1122
Committed: 2008-11-26T04:26:41-08:00 (16 years, 7 months ago) by douglas
Content type: text/x-sh
File size: 382 byte(s)
Log Message:
This needs more work, but FreeBSD PXE Boot beginnings...

File Contents

# 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"
13
14 [[ $architecture = soekris ]] && echo 'console="comconsole"' >> boot/loader.conf
15 done

Properties

Name Value
svn:keywords Id
svn:mime-type text/x-sh