File:  [ELWIX - Embedded LightWeight unIX -] / elwix / install2uboot.sh
Revision 1.1.2.1: download - view: text, annotated - select for diffs - revision graph
Mon Jan 20 08:53:13 2014 UTC (10 years, 4 months ago) by misho
Branches: elwix2_2
add install to u-boot image

#!/bin/sh
#
# ELWIX install script for u-boot image
#
# (C) AITNET ltd - Sofia/Bulgaria <office@aitnet.org>
#    by Michael Pounov <misho@elwix.org>
#
# $Id: install2uboot.sh,v 1.1.2.1 2014/01/20 08:53:13 misho Exp $
#

[ -r ./config/rc.elwix ] && . ./config/rc.elwix
if [ X"${ELWIX_IS_CONFIGURED}" != X"YES" ]; then
	echo
	echo "ELWIX project is not configured !?!"
	echo
	exit 1
fi

if [ "${USER}" != "root" ]; then
	echo
	echo "ELWIX project is not configured - install must build under root !?!"
	echo
	exit 1
fi


### main()

if [ -z "$1" -o ! -r "$1" ]; then
	echo
	echo "Error:: ELWIX image file '$1' not found!"
	echo
	exit 2
fi


echo "ELWIX u-boot image $1 complete."

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>