Intercept reads to CR0, CR3, CR4 and writes to CR0, CR3, CR4, and CR8.
[freebsd-src/fkvm-freebsd.git] / release / scripts / ports-install.sh
blob81c4023c77eeb26790fc61c8b8e093ba471101e1
1 #!/bin/sh
3 # $FreeBSD$
6 if [ "`id -u`" != "0" ]; then
7 echo "Sorry, this must be done as root."
8 exit 1
9 fi
10 echo "Extracting ports tarball into ${DESTDIR}/usr"
11 cat ports.tgz | tar --unlink -xpzf - -C ${DESTDIR}/usr
12 exit 0