root/PCBSD/pc-sysinstall/components/src/install.sh @ ff161129
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 |
- « Previous
- 1
- …
- 3
- 4
- 5
- Next »