File:  [ELWIX - Embedded LightWeight unIX -] / elwix / config / etc / default / rc.s / 000.boot.run
Revision 1.2.6.1: download - view: text, annotated - select for diffs - revision graph
Wed Jul 31 13:25:35 2013 UTC (11 years ago) by misho
Branches: elwix1_9
Diff to: branchpoint 1.2: preferred, colored
remove path to basename

#!/bin/sh
#
# This is default action for *Boot Stage Loader*
#
# $Id: 000.boot.run,v 1.2.6.1 2013/07/31 13:25:35 misho Exp $

echo ">>> BASE BOOT STAGE <<<"

for i in /etc/rc.t/*; do
	[ -d $i ] && continue
	[ "000.boot.run" = $(basename $i) ] && continue
	rm -f $i
done

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