Project

General

Profile

Download (374 Bytes) Statistics
| Branch: | Tag: | Revision:
1
#!/bin/sh
2
# Available Variables
3
# COMPTMPDIR = Set to the tmpdir that contains CFILE
4
# CFILE =  Set to the file(s) provided by this component
5
#          Comma delimited, if more than one file
6
# This script installs the freebsd source
7

    
8
rm -rf /usr/src
9
mkdir /usr/src
10
cd /usr/src
11
echo "Extracting FREEBSD source tree..."
12
tar xvjf ${COMPTMPDIR}/${CFILE} >/dev/null 2>/dev/null
(5-5/5)