I've been using mfsBSD for several years, but never mastered the art of buiding, so Thought I'd have another go after reading:-
docs.freebsd.org
where it says:
And it ends up with:
Next, build the bootable mfsBSD image:
# make BASE=DIST
When I run this I get
Cannot find direcory "DIST/base"
What have I done wrong here?
Remote Installation of the FreeBSD Operating System Without a Remote Console
Describes the remote installation of the FreeBSD operating system when the console of the remote system is unavailable
where it says:
3.2. Building an mfsBSD Image
The process of building an mfsBSD image is pretty straightforward.And it ends up with:
Next, build the bootable mfsBSD image:
# make BASE=DIST
When I run this I get
Cannot find direcory "DIST/base"
What have I done wrong here?
Bash:
DIST='/workdir/DIST'
echo $DIST
mkdir -p /workdir/DIST
cd /workdir
pkg install -y git
git clone https://github.com/mmatuska/mfsbsd.git
fetch -o - ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/12.3-RELEASE/kernel.txz | tar xf - -C DIST
fetch -o - ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/12.3-RELEASE/base.txz | tar xf - -C DIST
cd mfsbsd
make BASE=$DIST