xref: /freebsd/tools/tools/nanobsd/pcengines/build.sh (revision e0c4386e)
1#!/bin/sh
2#
3#
4
5if [ -z "${1}" -o \! -f "${1}" ]; then
6  echo "Usage: $0 cfg_file [-bhiknw]"
7  echo "-i : skip image build"
8  echo "-w : skip buildworld step"
9  echo "-k : skip buildkernel step"
10  echo "-b : skip buildworld and buildkernel step"
11  exit
12fi
13
14CFG="${1}"
15shift;
16
17sh ../nanobsd.sh $* -c ${CFG}
18