File:  [ELWIX - Embedded LightWeight unIX -] / elwix / build_kernel.sh
Revision 1.6: download - view: text, annotated - select for diffs - revision graph
Mon Sep 15 19:06:42 2014 UTC (9 years, 9 months ago) by misho
Branches: MAIN
CVS tags: elwix2_3, HEAD, ELWIX2_2p0
elwix 2.2

    1: #!/bin/sh
    2: #
    3: # ELWIX build script for kernel
    4: #
    5: # (C) AITNET ltd - Sofia/Bulgaria <office@aitnet.org>
    6: #    by Michael Pounov <misho@elwix.org>
    7: #
    8: # $Id: build_kernel.sh,v 1.6 2014/09/15 19:06:42 misho Exp $
    9: #
   10: 
   11: [ -r ./config/rc.elwix ] && . ./config/rc.elwix
   12: if [ X"${ELWIX_IS_CONFIGURED}" != X"YES" ]; then
   13: 	echo
   14: 	echo "ELWIX project is not configured !?!"
   15: 	echo
   16: 	exit 1
   17: fi
   18: 
   19: if [ ! -d $BSDSRC -o ! -d ${BSDKERNCONF} ]; then
   20: 	echo
   21: 	echo "ELWIX project is not configured - missing BSD sources !?!"
   22: 	echo
   23: 	exit 1
   24: fi
   25: 
   26: if [ "${USER}" != "root" ]; then
   27: 	echo
   28: 	echo "ELWIX project is not configured - BSD kernel must compile under root !?!"
   29: 	echo
   30: 	exit 1
   31: fi
   32: 
   33: clean_kernel()
   34: {
   35: 	echo "+++ Clean ELWIX Kernel ..."
   36: 	rm -rf $1
   37: 	mkdir -p $1
   38: 
   39: 	ln -sf ${CFGDIR}/$2 ${BSDKERNCONF}
   40: 	ln -sf ${CFGDIR}/${KERNHINT:=$KERNCONF.hints} ${BSDKERNCONF}
   41: }
   42: 
   43: build_kernel()
   44: {
   45: 	echo "+++ Build ELWIX Kernel ..."
   46: 	cd $BSDSRC
   47: 	env MAKEOBJDIRPREFIX=${BSDOBJ} make TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
   48: 		${PARALLEL_BUILD} SRCCONF=${SRCCONF} __MAKE_CONF=${MAKECONF} DESTDIR=$1 \
   49: 		buildkernel KERNCONF=$2
   50: 	if [ $? -eq 0 ]; then
   51: 		cd -
   52: 	else
   53: 		exit 1
   54: 	fi
   55: }
   56: 
   57: install_kernel()
   58: {
   59: 	echo "+++ Install ELWIX Kernel ..."
   60: 	cd $BSDSRC
   61: 	env MAKEOBJDIRPREFIX=${BSDOBJ} make TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
   62: 		SRCCONF=${SRCCONF} __MAKE_CONF=${MAKECONF} DESTDIR=$1 installkernel KERNCONF=$2
   63: 	cd -
   64: 
   65: 	if [ $? -eq 0 ]; then
   66: 		echo "ELWIX Platform:${PLATFORM} Version:${VERSION} TargetArch:${TARGET_ARCH}" >$1/elwix.ver
   67: 	fi
   68: }
   69: 
   70: ### main()
   71: if ! SnitVer ${KERN}/elwix.ver; then
   72: 	clean_kernel ${KERN} ${KERNCONF}
   73: 	build_kernel ${KERN} ${KERNCONF}
   74: 	install_kernel ${KERN} ${KERNCONF}
   75: else
   76: 	echo "Skipped ELWIX Kernel build ..."
   77: fi
   78: 
   79: if ! SnitVer ${KERN_ROOTFS}/elwix.ver; then
   80: 	clean_kernel ${KERN_ROOTFS} ${KERNCONF_ROOTFS}
   81: 	build_kernel ${KERN_ROOTFS} ${KERNCONF_ROOTFS}
   82: 	install_kernel ${KERN_ROOTFS} ${KERNCONF_ROOTFS}
   83: else
   84: 	echo "Skipped ELWIX rootfs Kernel build ..."
   85: fi
   86: 
   87: echo "+++ Complete build ELWIX Kernels"

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