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